From: Mike Taylor Date: Thu, 11 Jul 2013 09:37:52 +0000 (+0100) Subject: Remove --smart option from pandoc invocation. X-Git-Tag: 0.9.1~266 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=d6f8dad5a5824770e6c53ea71a84f34cd49f5b32 Remove --smart option from pandoc invocation. For some reason it doesn't work on caliban: $ pandoc --standalone --smart README.markdown > README.html pandoc: : commitAndReleaseBuffer: invalid argument (Invalid or incomplete multibyte or wide character) $ --- diff --git a/tools/htdocs/Makefile b/tools/htdocs/Makefile index 6a38a19..9b45066 100644 --- a/tools/htdocs/Makefile +++ b/tools/htdocs/Makefile @@ -27,6 +27,6 @@ help: README.html: README.markdown rm -f $@ - pandoc --standalone --smart $< > $@ + pandoc --standalone $< > $@ chmod ugo-w $@