diff options
author | John MacFarlane <[email protected]> | 2014-11-22 21:22:26 -0800 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2014-11-22 21:22:26 -0800 |
commit | acac9428faa1c3193fb44b3fb0e2dd3cbdaa4ac9 (patch) | |
tree | 16bab9f8f34dd6fc22a1b7f27b02b7f92b2939d6 /src/html/html.c | |
parent | a3be6dc81c971fa1b3c656d82f7e96794d510212 (diff) |
Renamed NODE_BQUOTE -> NODE_BLOCK_QUOTE.
Diffstat (limited to 'src/html/html.c')
-rw-r--r-- | src/html/html.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/html/html.c b/src/html/html.c index 889941c..0ce4443 100644 --- a/src/html/html.c +++ b/src/html/html.c @@ -109,10 +109,10 @@ static void node_to_html(strbuf *html, cmark_node *node) } break; - case NODE_BQUOTE: + case NODE_BLOCK_QUOTE: cr(html); strbuf_puts(html, "<blockquote>\n"); - // BQUOTE doesn't use any of the 'as' structs, + // BLOCK_QUOTE doesn't use any of the 'as' structs, // so the 'list' member can be used to store the // current value of 'tight'. cur->as.list.tight = tight; @@ -290,7 +290,7 @@ finish_node(strbuf *html, cmark_node *node, bool tight) } break; - case NODE_BQUOTE: { + case NODE_BLOCK_QUOTE: { cmark_list *list = &node->as.list; strbuf_puts(html, "</blockquote>\n"); // Restore old 'tight' value. |