summaryrefslogtreecommitdiff
path: root/src/commonmark.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-03-26 14:39:37 -0400
committerJohn MacFarlane <jgm@berkeley.edu>2015-03-26 14:52:53 -0700
commit30d84a8b75ed443d55f18d4f6b2982c5440b2b27 (patch)
tree4e1a1a3fe3d1ea0a4f4bd278c32e870baf177dfe /src/commonmark.c
parentfcc29754916a53078260dd95055f4e1dda6a3395 (diff)
Fixed HTML blocks.
Diffstat (limited to 'src/commonmark.c')
-rw-r--r--src/commonmark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commonmark.c b/src/commonmark.c
index af15371..b713303 100644
--- a/src/commonmark.c
+++ b/src/commonmark.c
@@ -304,7 +304,7 @@ S_render_node(cmark_node *node, cmark_event_type ev_type,
case CMARK_NODE_HTML:
blankline(state);
- out(state, node->as.code.literal, false, false);
+ out(state, node->as.literal, false, false);
blankline(state);
break;