From d6f8dad5a5824770e6c53ea71a84f34cd49f5b32 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 11 Jul 2013 10:37:52 +0100 Subject: [PATCH] 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) $ --- tools/htdocs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $@ -- 1.7.10.4