Remove --smart option from pandoc invocation.
authorMike Taylor <mike@indexdata.com>
Thu, 11 Jul 2013 09:37:52 +0000 (10:37 +0100)
committerMike Taylor <mike@indexdata.com>
Thu, 11 Jul 2013 09:37:52 +0000 (10:37 +0100)
For some reason it doesn't work on caliban:
$ pandoc --standalone --smart README.markdown > README.html
pandoc: <stdout>: commitAndReleaseBuffer: invalid argument (Invalid or incomplete multibyte or wide character)
$

tools/htdocs/Makefile

index 6a38a19..9b45066 100644 (file)
@@ -27,6 +27,6 @@ help:
 
 README.html: README.markdown
        rm -f $@
-       pandoc --standalone --smart $< > $@
+       pandoc --standalone $< > $@
        chmod ugo-w $@