summaryrefslogtreecommitdiff
path: root/src/commonmark.c
AgeCommit message (Expand)Author
2019-12-21Commonmark renderer: always use fences for code (#317).John MacFarlane
2019-12-21Ensure that consecutive indented code blocks aren't merged...John MacFarlane
2019-12-19Improve rendering of commonmark code spans with spaces.John MacFarlane
2019-04-06commonmark renderer: improve escaping.John MacFarlane
2018-10-04commonmark writer: use ~~~ fences if info string contains backtick.John MacFarlane
2018-08-25Code span spec changes.John MacFarlane
2017-07-11Use unsigned integer when shiftingPhil Turnbull
2017-06-29Fixed undefined shift in commonmark writer.John MacFarlane
2016-06-24Reformatted.John MacFarlane
2016-06-06buffer: proper safety checks for unbounded memoryVicent Marti
2016-06-06Fix character type detection in commonmark.cNick Wellnhofer
2016-06-02commonmark renderer: fixed code block as first in list item.John MacFarlane
2016-06-01renderer: no_linebreaks instead of no_wrap.John MacFarlane
2016-04-09Reformatted.John MacFarlane
2016-04-09Fixed a number of issues relating to line wrapping.John MacFarlane
2016-03-12Don't use variable length arraysNick Wellnhofer
2016-03-12Switch from "inline" to "CMARK_INLINE"Nick Wellnhofer
2016-02-28Fix ctype(3) usage on NetBSDKamil Rytarowski
2016-01-18Automatic code reformat.John MacFarlane
2016-01-18Merge branch 'master' of https://github.com/mbenelli/cmark into mbenelli-masterJohn MacFarlane
2016-01-17commonmark: is_autolink - handle case where link has no children.John MacFarlane
2016-01-17Improved escaping in commonmark renderer.John MacFarlane
2016-01-17Commonmark renderer: use HTML comment to separate list fromJohn MacFarlane
2016-01-17commonmark renderer: use 4-space indent for bullet lists.John MacFarlane
2016-01-16Use 2 space + cr for line break in commonmark output.John MacFarlane
2016-01-08Fixed get_containing_block logic in src/commonmark.c.John MacFarlane
2015-12-28Commonmark renderer: ensure that literal characters get escapedJohn MacFarlane
2015-12-28Rename NODE_HTML -> NODE_HTML_BLOCK, NODE_INLINE_HTML -> NODE_HTML_INLINE.John MacFarlane
2015-12-22Rename hrule -> thematic_break.John MacFarlane
2015-12-22CMARK_NODE_HEADER -> CMARK_NODE_HEADING.John MacFarlane
2015-12-22Rename 'header' -> 'heading'.John MacFarlane
2015-12-19Commonmark renderer: ensure html blocks surrounded by blanks.John MacFarlane
2015-12-19Changed API for CUSTOM_BLOCK and CUSTOM_INLINE.John MacFarlane
2015-12-19Rename RAW_BLOCK -> CUSTOM_BLOCK, RAW_INLINE -> CUSTOM_INLINE.John MacFarlane
2015-12-19Added RAW_BLOCK and RAW_INLINE node types.John MacFarlane
2015-12-10Fix warnings about dropping const qualifierKevin Wojniak
2015-12-01Fix "declaration shadows a local variable"Kevin Wojniak
2015-11-02Replaced sprintf with snprintf.Marco Benelli
2015-10-22commonmark: fix size_t to intKevin Wojniak
2015-07-27Use clang-format, llvm style, for formatting.John MacFarlane
2015-07-25Avoided another use of strbuf_printf.John MacFarlane
2015-07-25commonmark renderer - use regular sprintf for list markers.John MacFarlane
2015-07-14astyle reformatting.John MacFarlane
2015-07-12commonmark renderer - escape !.John MacFarlane
2015-07-12commonmark writer - escape all #'s, not just at beginning of line.John MacFarlane
2015-07-12Fixed soft breaks in commonmark writer.John MacFarlane
2015-07-12Small cleanups.John MacFarlane
2015-07-12Use cmark_render_code_point in renderers.John MacFarlane
2015-07-12Removed options field from renderer struct.John MacFarlane
2015-07-12cmark_render: ensure final newline.John MacFarlane