cmark

My personal build of CMark ✏️

Commit
572608d158772cef6562b8c34f370fff98855174
Parent
009e0dcbf3cf3c325596e885dd0224031330dad7
Author
John MacFarlane <jgm@berkeley.edu>
Date

spec_tests.py: Replace → with tab when dumping json.

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified spec_tests.py 2 1 1
diff --git a/spec_tests.py b/spec_tests.py
@@ -264,7 +264,7 @@ def do_tests(specfile, prog, pattern, normalize, dump_tests):
                     if active:
                         if dump_tests:
                             tests_json.append({
-                                 "markdown":''.join(markdown_lines),
+                                 "markdown":''.join(markdown_lines).replace('→',"\t"),
                                  "html":''.join(html_lines),
                                  "example": example_number,
                                  "start_line": start_line,