diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-12-28 17:12:40 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-12-28 17:12:40 -0800 |
commit | dd1c58355f69a5fb3ab6fc90a32f48c8a9913176 (patch) | |
tree | 3150bc0b90f60090dfc7d53fdcf66d40f677818e /src/blocks.c | |
parent | b50a2cd618802543e01f46bffb4b19d5bd5b4ba6 (diff) |
Rename CMARK_NODE_LIST_ITEM -> CMARK_NODE_ITEM.
Diffstat (limited to 'src/blocks.c')
-rw-r--r-- | src/blocks.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/blocks.c b/src/blocks.c index 4dcd3f4..d52cd99 100644 --- a/src/blocks.c +++ b/src/blocks.c @@ -104,8 +104,8 @@ static inline bool can_contain(cmark_node_type parent_type, cmark_node_type chil { return ( parent_type == NODE_DOCUMENT || parent_type == NODE_BLOCK_QUOTE || - parent_type == NODE_LIST_ITEM || - (parent_type == NODE_LIST && child_type == NODE_LIST_ITEM) ); + parent_type == NODE_ITEM || + (parent_type == NODE_LIST && child_type == NODE_ITEM) ); } static inline bool accepts_lines(cmark_node_type block_type) @@ -149,7 +149,7 @@ static bool ends_with_blank_line(cmark_node* cmark_node) if (cmark_node->last_line_blank) { return true; } - if ((cmark_node->type == NODE_LIST || cmark_node->type == NODE_LIST_ITEM) && cmark_node->last_child) { + if ((cmark_node->type == NODE_LIST || cmark_node->type == NODE_ITEM) && cmark_node->last_child) { return ends_with_blank_line(cmark_node->last_child); } else { return false; @@ -558,7 +558,7 @@ S_process_line(cmark_parser *parser, const unsigned char *buffer, size_t bytes) all_matched = false; } - } else if (container->type == NODE_LIST_ITEM) { + } else if (container->type == NODE_ITEM) { if (indent >= container->as.list.marker_offset + container->as.list.padding) { @@ -741,7 +741,7 @@ S_process_line(cmark_parser *parser, const unsigned char *buffer, size_t bytes) } // add the list item - container = add_child(parser, container, NODE_LIST_ITEM, parser->line_number, + container = add_child(parser, container, NODE_ITEM, parser->line_number, first_nonspace + 1); /* TODO: static */ memcpy(&container->as.list, data, sizeof(*data)); @@ -775,7 +775,7 @@ S_process_line(cmark_parser *parser, const unsigned char *buffer, size_t bytes) container->type != NODE_HEADER && !(container->type == NODE_CODE_BLOCK && container->as.code.fenced) && - !(container->type == NODE_LIST_ITEM && + !(container->type == NODE_ITEM && container->first_child == NULL && container->start_line == parser->line_number)); |