summaryrefslogtreecommitdiff
path: root/src/node.c
AgeCommit message (Expand)Author
2015-08-10Remove need to disable MSVC warning 4244Kevin Wojniak
2015-08-10Remove need to disable MSVC warning 4800Kevin Wojniak
2015-07-27Use clang-format, llvm style, for formatting.John MacFarlane
2015-05-14Store link URL and title as cmark_chunkNick Wellnhofer
2015-02-14astyle changes (code formatting only).John MacFarlane
2015-01-21Avoid free(0) for link titles and URLs.John MacFarlane
2015-01-21Avoid trying to free string_contents for inlines.John MacFarlane
2015-01-20Add user data field for nodesNick Wellnhofer
2015-01-05Reformatted code consistently with astyle.John MacFarlane
2014-12-28Added cmark_node_set_list_delim, cmark_node_get_list_delim.John MacFarlane
2014-12-28Added end_column to cmark_node struct.John MacFarlane
2014-12-28Rename CMARK_NODE_LIST_ITEM -> CMARK_NODE_ITEM.John MacFarlane
2014-12-28Rename cmark_node_type_string -> cmark_node_get_type_string.John MacFarlane
2014-12-28Expose cmark_node_type_string in node.h (private header).John MacFarlane
2014-12-16Added 'literal' field to 'code' struct.John MacFarlane
2014-12-15Re-added cmark_ prefix to strbuf and chunk.John MacFarlane
2014-12-14Rename get/set_string_content -> get/set_literal.John MacFarlane
2014-12-14Use chunk for fenced code info, instead of strbuf.John MacFarlane
2014-12-14Use as.literal instead of string_content for HTML and code blocks.John MacFarlane
2014-12-14Rename CMARK_NODE_INLINE_CODE -> CMARK_NODE_CODE.John MacFarlane
2014-12-13Added iterator interface to API, removed cmark_walk.John MacFarlane
2014-12-13API improvements: cmark_event_type parameter for walk handlers.John MacFarlane
2014-12-13Remove CMARK_NODE_REFERENCE_DEF from API.John MacFarlane
2014-12-13Removed cmark_ prefix on chunk and strbuf.John MacFarlane
2014-12-12Revert "Removed CMARK_NODE_REFERENCE_DEF from API."John MacFarlane
2014-12-12Removed CMARK_NODE_REFERENCE_DEF from API.John MacFarlane
2014-12-12Rewrote HTML renderer using cmark_walk.John MacFarlane
2014-12-12Added cmark_node_handler and cmark_walk to header.John MacFarlane
2014-12-05Revert "API change: Add cmark_node_set_type for completeness."John MacFarlane
2014-12-05API change: Add cmark_node_set_type for completeness.John MacFarlane
2014-12-05node.c: Make sure no functions segfault if passed null pointers.John MacFarlane
2014-12-05Changed CMARK_NODE_NONE from -1 to 0.John MacFarlane
2014-12-05Added CMARK_NODE_TYPE_NONE.John MacFarlane
2014-11-29Fix prev pointer of emph->first_childNick Wellnhofer
2014-11-28Removed cmark_free_nodes from public API.John MacFarlane
2014-11-28Renamed identifiers in public API:John MacFarlane
2014-11-26Don't allow insert_{before|after} root nodeNick Wellnhofer
2014-11-25Rename NODE_STRING -> NODE_TEXT.John MacFarlane
2014-11-23Do not distinguish btw fenced and indented code in AST.John MacFarlane
2014-11-23Revert "Revert "Remove distinction btw atx and setext header in AST.""John MacFarlane
2014-11-22Revert "Remove distinction btw atx and setext header in AST."John MacFarlane
2014-11-22Remove distinction btw atx and setext header in AST.John MacFarlane
2014-11-22Renamed NODE_BQUOTE -> NODE_BLOCK_QUOTE.John MacFarlane
2014-11-22Fix and test node_checkNick Wellnhofer
2014-11-22Set defaults for new headers and listsNick Wellnhofer
2014-11-22More tree hierarchy checks and testsNick Wellnhofer
2014-11-19Input validation for settersNick Wellnhofer
2014-11-19Fix {get|set}_string_contentNick Wellnhofer
2014-11-19Accessors for start_line, start_column, end_lineNick Wellnhofer
2014-11-19Accessors for link titlesNick Wellnhofer