fix extid handling: ensure encoded string is given, and store them as base64 (see note in native.py).
Bump version to force migration on dev instances.
MKHTMLOPTS=--doctype book --param toc.section.depth=1 --target html --stylesheet single-file
SRC=.
MKPDFOPTS=--doctype book --param toc.section.depth=2 --target pdf --stylesheet standard
TXTFILES:= $(wildcard *.txt)
TARGET := $(TXTFILES:.txt=.html)
all: index.html
index.html: *.txt
mkdoc ${MKHTMLOPTS} index.txt
index.pdf: *.txt
mkdoc ${MKPDFOPTS} index.txt
%.html: %.txt
mkdoc ${MKHTMLOPTS} $<
clean:
rm -f *.html