kc3-lang/md4c/test

Branch :


Log

Author Commit Date CI Message
481fbfbd 2024-02-25 20:51:06 Check for hard breaks more carefully to avoid false positives... ... caused by trailing tab characters. Fixes #250.
64f36805 2024-02-25 16:24:50 Fix handling tab when removing trailing whitespace. Espacially in connection with ATX headers.
3848bfb6 2024-02-21 08:51:05 Make striketrough spans follow same flanking rules... ... as other emphasis spans. Fixes #242.
aa53f82c 2024-02-07 11:44:39 Introduce an overall limit to link. ref. defs instantiations. This is to prevent time and output size explosion in case of input pattern generated by this: $ python -c 'N=1000; print("[x]: " + "x" * N + "\n[x]" * N)' We roughly allow to blowing up the input size of the document 16 times by link reference definitions or up to 1 MB, whatever is smaller. When the threshold is reached, following reference definitions are sent to output unresolved as a text. Fixes #238.
f37a89f5 2024-02-01 21:55:45 md_is_inline_link_spec: Use md_lookup_line() instead of walking. Fixes #236.
485619fe 2024-01-30 01:46:15 test/spec.txt: Upgrade to spec version 0.31.2. It's essentially same as 0.31 and 0.31.1, it only fixes release date metadata in the spec.txt file. Also fix link in CHANGELOG.md accordingly.
f852aaed 2024-01-28 20:37:08 test/LICENSE: Update to reflect recent file renaming. Also rename the file to test/LICENSE.md.
1883132b 2024-01-28 19:05:39 Update test/spec.txt from upstream. (The spec 0.31 was released errorneously still with version 0.30 inside of it. Re-release 0.31.1 fixes it.)
136b39ac 2024-01-09 02:10:43 Update test/spec.txt from upstream.
aeddaf58 2024-01-25 22:24:17 Simplify and fix handling of newline in code span. Fixes #223 properly (one corner case has been unnoticed/hidden due test suite normalization feature). Fixes #230 (strictly speaking duplicate of the corner case).