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