kc3-lang/md4c/md2html

Branch :


Log

Author Commit Date CI Message
2ba5e2c6 2024-01-17 14:48:57 Make --replay-fuzz friendlier to work with in debugger. We make effectively input zero-terminated so debugger doesn't attempt to write more than what's really provided.
4a64fee2 2024-01-11 13:12:55 Bump copyright years.
338e0bb2 2024-01-10 17:30:51 md2html: Add undoc'ed debug option --replay-fuzz. This helps to reproduce issues found by oss-fuzz project.
47a2ad3d 2024-01-09 11:34:40 added options --html-title and --html-css (#188)
6ef3be6e 2024-01-08 20:09:57 `MD_FLAG_HARD_SOFT_BREAKS` (#193)
a470fbf8 2022-01-13 20:34:47 md2html: Change interpretation of --github and --commonmark options. Previously these assigned a set of parser flags with an operator '='. Now '|=' is used so that any preceding options affecting what extensions to allow are not ignored.
ea188729 2021-07-15 18:58:39 Emit '\n' after the XHTML root tag. Fixes #163.
e8285942 2021-06-14 09:47:17 Fix MSVC compiler level 3 warnings (#162) Fix various C4244 warnings with the MSVC compiler for 64 bit
269bbdb3 2021-02-11 21:39:44 Fix output with --full-html command line options. Fixes #150.
ddcc1f34 2020-05-04 12:54:15 HTML renderer: Add support for XHTML mode.
2728b9eb 2020-04-20 19:37:18 Move md2html utility to a standalone dir.
7f2d880f 2019-08-09 09:50:24 Refactor dir structure. We place all the sources in the single directory in order to not having many dirs with too few sources.
d0e3ed79 2020-03-12 22:45:32 md2html: Skip UTF-8 BOM, if present in the input.
e33bb733 2020-02-23 02:47:31 md2html: Migrate to cmdline.[hc] from C-Reusables. This fixes many warnings from gcc 9.2.
df582785 2020-02-12 22:18:01 travis CI: Enforce -std=c89. Also fix all related warnings and errors. This should help Qt team which needs to build MD4C with Integrity compiler for some embedded platforms.
af1c0b11 2020-01-27 11:52:07 Change all aux. buffers growing factor to 1.5. This is in general better in order to avoid heap fragmentation. When growing a buffer N times with the old factor of two (and when realloc() cannot just grow in-place), we create a gap 2^N-1 bytes long, but asking for 2^N bytes. This ever-growing hard-to-reuse gap can cause troubles to some heap allocators. See e.g. https://github.com/facebook/folly/blob/master/folly/docs/FBVector.md
12175f74 2020-01-10 19:37:26 md2html.c: Improve --html output.
e6661f23 2020-01-10 19:27:10 Implement an underline extension. (#103) Closes #101.
e3b14bbe 2019-12-11 18:27:04 render_html.c: Minor clean-up.
6666db6d 2019-12-11 17:40:04 render_html.c: Unify HTML escaping and URL escaping.
43bfa54d 2019-12-10 12:11:40 md2html.c: Fix printing input file name when output cannot be opened. (#99)
e336e640 2019-11-04 15:20:59 Add support for Wiki links (#92) With a new flag MD_FLAG_WIKILINKS, recoginize wiki-style links as [[foo]] and [[foo|bar]]. Update also the HTML renderer accordingly, to output a custom HTML tag <x-wikilink> when seeing it.
993c7b9b 2019-11-03 23:32:46 Render LaTeX math into HTML as a tag <x-equation>... ... instead of <equation>. This is to highlight that it is not a standard HTML tag.
ae5ca894 2019-07-12 08:44:53 md2html/CMakeLists.txt: Use INSTALL(TARGETS) instead of INSTALL(PROGRAMS). Fixes #88.
8bac86aa 2019-07-07 09:46:10 Added support for LaTeX math (#87) Addresses #86.
f0de1990 2019-06-24 21:56:50 Add man page for md2html program (#85) Fixes #56
c4e6ddc3 2019-05-20 21:27:20 md2html/render_html.h: Add extern "C" when included in C++. Seems some people desire to use the HTML renderer in C++ projects, so lets make this as the 1st step in making it easy :-)
56f8bbb1 2019-05-19 15:12:32 Implement/improve some optimizations, both in the parser and HTML renderer.
ef64fd38 2019-05-13 10:46:50 render_html.c: Improve RENDER_LITERAL to not cause warnings in MSVC 2017.
19504cad 2019-04-29 22:24:23 Revert "Build: With gcc and clang, enforce -std=c90." This reverts commit 716b6ca4448318df900eb22bb7a31499a827d905. Rationale: snprintf() not available in C90, so -std=c90 causes warnings on Linux.
716b6ca4 2019-04-17 15:01:03 Build: With gcc and clang, enforce -std=c90. See #71. This forces us to be more conservative in the future code changes, and make us more friendly mainly to some embedded compilers who are often behind the current state of art. Fix also related warnings and errors, as provided by gcc 8.1.0.
8e01a769 2019-02-10 22:58:42 Implement task lists. (#50) Fixes #30.
5f33d933 2019-02-07 15:54:25 Build md4c as a shared library. (#49) Build md4c as a shared library. - Define the current version in the main CMakeLists.txt, so it can be used within the project. - Define VERSION, SOVERSION and PUBLIC_HEADER as target properties. - Be able to install both libmd4c and md2html. - Create a pkg-config file. Fixes #48
00236fc7 2019-02-05 12:59:44 Update years in the files changed this year and in LICENSE.md.
03f58685 2019-02-05 10:13:34 md4c.h: Rename and refactorize MD_RENDERER struct. * Rename MD_RENDERER to MD_PARSER. (Typedef to provide the original name is provided to minimize disruption of existing code.) * Reorder its members to make better sense. * Add abi_version member (hopefully, it shall never be needed ;-) * Update md2html utility to deal with the change. Rationale: This is done in order to prepare for long-term maintenance of ABI compatibility, as there is no work-in-progress to be buildable as shared lib, and be included in some Linux distros.
21d6cc9d 2018-04-12 12:03:18 md2html.c: Fix possible overflow in membuf_grow().
26c5268e 2018-04-12 11:51:21 md2html.c: Add newline to some error messages.
5f47a5cb 2017-09-11 10:55:21 md_build_attribute: Handle U+0000 character.
8bfb6785 2017-08-28 16:16:59 render_html: Get rid of global variable. This is a residue which by mistake survived the isolation of the rendering code in the c850843c12468c6bd500b4c1d86653bdac5628d4.
dc3dde78 2017-08-28 16:14:04 render_html: Add a new line after <ol>. This makes the behavior more consistent with <ul>.
4e831dc1 2017-07-15 18:40:38 Add 2017 into copyright notes.
1bc7f3a8 2017-07-14 02:22:15 render_url_escaped: Fix escaping of ampersand. This affected generating href attribute if links or src attribute of images.
f3f9404e 2017-07-14 02:06:23 Improve URL autolinks extension. It is now much more compatible to Cmark-gfm. With the flag MD_FLAG_PERMISSIVEWWWAUTOLINKS, we now also support the WWW autolinks (when the http: scheme is omitted).
82c0eb53 2017-07-13 16:23:45 entity_lookup: Make it return UTF-32 codepoints. And adapted callers accordingly. Fixes #12.
25a156ee 2017-07-12 23:30:14 Implement strikethrough extension.
aa51e86f 2017-07-12 22:52:58 md2html/md2html.c: Add options for Markdown dialect. Added support for options --commonmark and --github.
ba686ec3 2016-12-16 10:16:17 render_html.c: Fix build with MSVC.
c377f567 2016-12-16 10:06:07 Add some versioning info. * md4c.h now contains macros MD_VERSION_xxxx. * md2html has option --version. (Of course those shall have some meaningful values only when we introduce some release process.)
c9ef8ccb 2016-12-16 09:59:03 render_html.c: Unify use of char versus MD_CHAR.
c850843c 2016-12-16 09:47:06 md2html: Isolate HTML renderer into render_html.c (issue #8).
c085ab5c 2016-12-12 23:23:51 Implement support for entities outside normal text flow (issue #5). * Change API (md4c.h) to propagate different substring type info to renderer. * Implement/refactor related code in the parser. * Adapt renderer (md2html) to the new API.
09ae8609 2016-12-07 23:56:47 Handle images more like links. Remove MD_SPAN_IMG_DETAIL::alt. Instead, the contents of the image is propagated to the renderer via MD_RENDERER::text() callback. * This fixes handling of entities inside the image text (issue #4). * It simplifies parsing and, more importantly, it better distingusshes what is responsibility of parser or renderer respectively. * This allows more flexibility on renderers side. Renderer who do not * really support images can just output the image content as any other text. The cost is a renderer into HTML (if it wants to render image contents into the attribute ALT of the IMG tag), has to handle images with more care. Typically such renderer has to track whether it is inside an image, and if so, then render span enter/leave as an empty string.
0d10f6db 2016-12-05 12:34:29 md2html.c: No need for <stdint.h>
bc52610e 2016-12-05 12:21:07 Fix signed/unsigned comparisons. This removes a lot of MSVC warnings.
a930e46f 2016-11-24 15:04:47 Fix build with MSVC.
54028ed7 2016-11-24 14:16:47 Implement ordered lists.
b86c7f28 2016-11-24 11:31:28 Implement unordered lists.
be7fcc16 2016-11-21 09:47:31 Implement tables. Note it is implemented as an extension. To enable it, the flag MD_FLAG_TABLES must be explicitly specified.
9f1c4b58 2016-11-21 09:48:08 Fix macro MD_FLAG_PERMISSIVEAUTOLINKS.
7d7d3b40 2016-11-21 02:41:39 md2html: Implement URL escaping.
20434c8a 2016-11-21 02:08:34 Implement images.
36643f4a 2016-11-20 00:16:16 md2html: Fix name of link attribute 'title'.
1a247795 2016-11-10 13:22:29 Implement link reference definitions and, partially, link references.
7c9f5982 2016-11-07 19:48:16 Fix typo in debug output.
ef5f230f 2016-10-14 19:56:05 Implement permissive autolinks extensions. With MD_FLAG_PERMISSIVEURLAUTOLINKS, we treat not overly complicated URLs as autolinks even without '<' and '>'. With MD_FLAG_PERMISSIVEEMAILAUTOLINKS, we treat not overly complicated e-mail addresses as autolinks even without '<', '>' and without the 'mailto:' scheme. Also expanded md2html utility and tests to cover these.
296c8318 2016-10-13 19:04:36 Implement emphasis and strong emphasis.
a7899c05 2016-10-11 02:34:01 Implement autolinks.
1cfc6a5f 2016-10-11 01:10:11 Incorporate the specification testsuite from CommonMark.
2b740798 2016-10-11 00:36:39 Implement insecure character (NULL) replacement.
de2338ec 2016-10-09 00:42:30 Fix: By default, do not collapse whitespace.
14090e2e 2016-10-08 23:30:49 md2html: Output new-line after "</blockquote>".
87b41e1a 2016-10-07 20:39:42 Implement entities.
a284a382 2016-10-06 23:50:56 Implement code spans.
33258e68 2016-10-04 21:18:30 Implement block quotes.
279ec8f6 2016-10-04 20:46:10 Implement soft and hard line breaks.
e0127581 2016-10-04 20:29:22 Implement raw HTML blocks.
d2da226c 2016-10-04 19:48:06 Implement fenced code blocks.
43bd2844 2016-10-04 03:26:56 Implemented indented code blocks.
80984c98 2016-10-04 02:18:47 Little code clean-up.
0225f337 2016-10-04 00:55:32 Implement ATX headers.
63a92c08 2016-10-04 00:18:08 Implement thematic breaks (<hr>).
efed58af 2016-10-03 20:17:15 Initial commit.