--xetex option in markdown2pdf seems to cause "Invalid or incomplete multibyte or wide character" errors
authorgibus
Thu, 09 Jun 2011 11:41:04 +0200
changeset 356 52569110fb34
parent 355 c926868cf7e6
child 357 2f4587a37ff9
--xetex option in markdown2pdf seems to cause "Invalid or incomplete multibyte or wide character" errors
src/cm/converters/pandoc_converters.py
--- a/src/cm/converters/pandoc_converters.py	Mon Jun 06 10:08:10 2011 +0200
+++ b/src/cm/converters/pandoc_converters.py	Thu Jun 09 11:41:04 2011 +0200
@@ -119,7 +119,9 @@
     temp_file.write(content.encode(_PANDOC_ENCODING))
     temp_file.close()
     
-    cust_tex = " --xetex "
+    # xetex seems to cause "Invalid or incomplete multibyte or wide character" errors
+    #cust_tex = " --xetex "
+    cust_tex = ''
     
     # use markdown2pdf
     retcode = call(MARKDOWN2PDF_BIN + cust_tex + ' ' + input_temp_name, shell=True, stderr=fp_error)