cmark

My personal build of CMark ✏️

Commit
c10ae9796285f476a9571505d9de11a55b7a6724
Parent
d2d31c6afcfe468fb16d6488c20b24f8330491b9
Author
Pablo <pablo-escobar@riseup.net>
Date

Minor changes to the rendering engine

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
@@ -235,7 +235,7 @@ static int S_render_node(cmark_node *node, cmark_event_type ev_type,
     break;
 
   case CMARK_NODE_CODE:
-    cmark_strbuf_puts(html, "<code>");
+    cmark_strbuf_puts(html, "<code class=\"inline\">");
     escape_html(html, node->data, node->len);
     cmark_strbuf_puts(html, "</code>");
     break;