summaryrefslogtreecommitdiff
path: root/src/xml.c
AgeCommit message (Expand)Author
2020-08-23Add MAX_INDENT for xml.John MacFarlane
2020-06-24Fix handling of empty strings when creating XML/HTML output.Steffen Kieß
2020-01-23Rearrange struct cmark_nodeNick Wellnhofer
2020-01-23Use C string instead of chunk for custom block contentsNick Wellnhofer
2020-01-23Use C string instead of chunk for link URL and titleNick Wellnhofer
2020-01-23Use C string instead of chunk for code info and literalNick Wellnhofer
2018-07-07Add xml:space="preserve" in XML output when appropriateNguyễn Thái Ngọc Duy
2016-06-06cmark: Implement support for custom allocatorsVicent Marti
2016-03-12Don't use variable length arraysNick Wellnhofer
2016-03-12Switch from "inline" to "CMARK_INLINE"Nick Wellnhofer
2016-01-18Merge branch 'master' of https://github.com/mbenelli/cmark into mbenelli-masterJohn MacFarlane
2015-12-28Reformat sources.John MacFarlane
2015-12-28Rename NODE_HTML -> NODE_HTML_BLOCK, NODE_INLINE_HTML -> NODE_HTML_INLINE.John MacFarlane
2015-12-23Added version number to XML namespace.John MacFarlane
2015-12-22CMARK_NODE_HEADER -> CMARK_NODE_HEADING.John MacFarlane
2015-12-22Rename 'header' -> 'heading'.John MacFarlane
2015-12-22xml renderer - Added xmlns attribute to document node.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-11-02Replaced sprintf with snprintf.Marco Benelli
2015-10-19Fixed DOCTYPE in xml output.John MacFarlane
2015-07-27Use clang-format, llvm style, for formatting.John MacFarlane
2015-07-25xml renderer - use sprintf to avoid strbuf_sprintf.John MacFarlane
2015-07-25Avoid using strbuf_printf when not needed.John MacFarlane
2015-06-07Avoid strlen in xml.cNick Wellnhofer
2015-06-07Convert code base to strbuf_tNick Wellnhofer
2015-06-06astyle formatting changes.John MacFarlane
2015-05-14Store link URL and title as cmark_chunkNick Wellnhofer
2015-02-16Made 'options' an int rather than a long.John MacFarlane
2015-02-15Moved normalization step from XML renderer to main.John MacFarlane
2015-01-21Removed unnecessary strbuf_free's.John MacFarlane
2015-01-12Some astyle reformatting.John MacFarlane
2015-01-11xml.c: Include level attribute in header.John MacFarlane
2015-01-11xml format: use 'destination' instead of 'url', like the spec.John MacFarlane
2015-01-09Minor code reformatting.John MacFarlane
2015-01-09xml writer: add list attributes.John MacFarlane
2015-01-07cmark: Add function & option to normalize text nodes.John MacFarlane
2015-01-05Reformatted code consistently with astyle.John MacFarlane
2015-01-04xml writer - fixed issues with empty images.John MacFarlane
2014-12-31Remove useless void* castNick Wellnhofer
2014-12-29Make `--sourcepos` affect xml writer too.John MacFarlane
2014-12-29Added options parameter to renderers.John MacFarlane
2014-12-28Added end_column to cmark_node struct.John MacFarlane
2014-12-28Revamped xml writer and dtd to use lowercase element names.John MacFarlane
2014-12-28Added xml writer, to dump the AST in XML.John MacFarlane