cmark

My personal build of CMark ✏️

Commit
3d46c2b594c1230cebb89c48c86b8a80aee43553
Parent
39ae2629ff9f343669a24cb22890fb5b6645a4ab
Author
John MacFarlane <jgm@berkeley.edu>
Date

test/cmark.py: set default options for markdown_to_html.

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified test/cmark.py 2 1 1
diff --git a/test/cmark.py b/test/cmark.py
@@ -13,7 +13,7 @@ def pipe_through_prog(prog, text):
 def use_library(lib, text):
     textbytes = text.encode('utf-8')
     textlen = len(textbytes)
-    return [0, lib(textbytes, textlen).decode('utf-8'), '']
+    return [0, lib(textbytes, textlen, 0).decode('utf-8'), '']
 
 class CMark:
     def __init__(self, prog=None, library_dir=None):