Martin Mitáš
Martin Mitáš
Spec 0.27 says: > A list item can begin with at most one blank line. In the following example, foo is not part of the list item. And demonstrates it...
I found handling dealing inline links as problematic with respect to the following. Unlike for the `[...]`, the specification does not say anything about how `(...)` in an inline link...
(Distilled from https://talk.commonmark.org/t/i-dont-understand-how-emphasis-is-parsed/3866) Input: ``` Markdown *****Hello*world**** ``` Actual Output: ``` HTML *****Helloworld*** ``` Expected Output: ``` HTML **Helloworld ``` More detailed rationale can be found in this comment: https://talk.commonmark.org/t/i-dont-understand-how-emphasis-is-parsed/3866/8
I have just took a look how commonmark.js deals with the pathological inputs in Cmark's `pathological_tests.py` and in recently reported Cmark bugs. Below is list of commands generating input which,...
Project MD4C has one open problematic issue, namely https://oss-fuzz.com/testcase-detail/5609076764573696. It's not a crash but timeout, and it's marked as flaky. Even though I believe this bug is fixed for a...
We need some better benchmarks. Created a [PR](https://github.com/miloyip/nativejson-benchmark/pull/124) for [nativejson-benchmark](https://github.com/miloyip/nativejson-benchmark) which seems to be more or less the best out there for the purpose.
This PR is an attempt to implement the proposal discussed in #245. Rough to-do list: * [x] Change API in `md4c.h` so that the callbacks can get custom block/span/text type...
_Originally posted by @mity in https://github.com/github/cmark-gfm/issues/141#issuecomment-590493589_ ``` foo | a | b | | --- | --- | | c | d | ``` renders to (with `-e table`) ```...