cmark

My personal build of CMark ✏️

Commit
e384149e683fd6ea950ba9318525563175ca9f47
Parent
64ba9539e97af3cf1a41247ed929492d6dda588d
Author
John MacFarlane <jgm@berkeley.edu>
Date

html renderer - removed unnecessary check for 'fenced'.

It's sufficient to check that the info string is empty. Indeed, those who use the API may well create a code block with an info string without explicitly setting 'fenced'.

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified src/html.c 2 1 1
diff --git a/src/html.c b/src/html.c
@@ -144,7 +144,7 @@ static int S_render_node(cmark_node *node, cmark_event_type ev_type,
   case CMARK_NODE_CODE_BLOCK:
     cr(html);
 
-    if (!node->as.code.fenced || node->as.code.info.len == 0) {
+    if (node->as.code.info.len == 0) {
       cmark_strbuf_puts(html, "<pre");
       S_render_sourcepos(node, html, options);
       cmark_strbuf_puts(html, "><code>");