summaryrefslogtreecommitdiff
path: root/src/latex.c
AgeCommit message (Expand)Author
2020-01-23Rearrange struct cmark_nodeNick Wellnhofer
2017-08-03Reformat source code with 'make format'Nguyễn Thái Ngọc Duy
2017-06-29latex writer: fix memory overflow.John MacFarlane
2017-06-27Check for NULL pointer in get_link_typePhil Turnbull
2017-01-07Fixes for the LaTeX renderer (#182)Doeme
2016-11-13Fix warnings building with MSVC on Windows (#165)Hugh Bellamy
2016-06-06buffer: proper safety checks for unbounded memoryVicent Marti
2016-06-06Fix character type detection in commonmark.cNick Wellnhofer
2016-06-01Coerce realurllen to int.John MacFarlane
2016-06-01- Changed type from int to size_t to fix implicit type conversion warningBenedict Cohen
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-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-27latex renderer - better handling of internal links.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-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-07-27Use clang-format, llvm style, for formatting.John MacFarlane
2015-07-14astyle reformatting.John MacFarlane
2015-07-12Small cleanups.John MacFarlane
2015-07-12Use cmark_render_code_point in renderers.John MacFarlane
2015-07-12latex renderer - simplified using cmark_render_ascii.John MacFarlane
2015-07-12Removed options field from renderer struct.John MacFarlane
2015-07-12Removed enumlevel field of renderer.John MacFarlane
2015-07-12latex: Removed need to access render->in_tight_list_item.John MacFarlane
2015-07-12cmark_render: ensure final newline.John MacFarlane
2015-07-11Restructured common renderer code.John MacFarlane
2015-07-11Rename cmark_render_state -> cmark_renderer.John MacFarlane
2015-07-11Factored out common bits of rendering into separate render module.John MacFarlane
2015-07-07Fixed compiler warnings.John MacFarlane
2015-07-06Use sprintf rather than snprintf because we know it won't overflow.John MacFarlane
2015-07-05Another try at getting snprintf part to compile on Windows.John MacFarlane
2015-07-05Fixed typo in Windows fix.John MacFarlane
2015-07-05LaTeX writer: fixed some compile errors on MSVC.John MacFarlane
2015-07-05LaTeX writer: Fixed straight single, double quote.John MacFarlane
2015-07-05LaTeX renderer: \textbf for strong.John MacFarlane
2015-07-05astyle formatting improvements.John MacFarlane
2015-07-05Added LaTeX renderer.John MacFarlane