cmark

My personal build of CMark ✏️

Commit
54bc9903cff53399c4bc67be0d1b842201863f83
Parent
a8ed144adf688c2194367d072bc9638af68fc4f7
Author
John MacFarlane <jgm@berkeley.edu>
Date

Use 2 space + cr for line break in commonmark output.

This is more portable.

Closes #90.

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified src/commonmark.c 2 1 1
diff --git a/src/commonmark.c b/src/commonmark.c
@@ -320,7 +320,7 @@ static int S_render_node(cmark_renderer *renderer, cmark_node *node,
 
   case CMARK_NODE_LINEBREAK:
     if (!(CMARK_OPT_HARDBREAKS & options)) {
-      LIT("\\");
+      LIT("  ");
     }
     CR();
     break;