cmark-gfm icon indicating copy to clipboard operation
cmark-gfm copied to clipboard

GitHub's fork of cmark, a CommonMark parsing and rendering library and program in C

Results 117 cmark-gfm issues
Sort by recently updated
recently updated
newest added

```markdown Call.[^a\]b]. [^a\]b]: y ``` Call.[^a\]b]. [^a\]b]: y Note that it is instead a properly connected link reference, showing that those do support them. Other escapes do work properly.

Take this example: ```markdown Some calls.[^A][^a][^ΑΓΩ][^αγω] Lorem ipsum dolor sit amet [...8 paragraphs to observe whether linking works correctly]... laborum. [^A]: ALPHA [^a]: alpha [^ΑΓΩ]: ΑΓΩ [^αγω]: αγω ``` (I’ll...

```markdown Some calls.[^ A][^B ] [^A]: whatevs [^B]: whatevs ``` Some calls.[^ A][^B ] [^A]: whatevs [^B]: whatevs --- But: ```markdown Some calls.[^C][^D] [^ C]: whatevs [^D ]: whatevs ```...

https://github.github.com/gfm/ is still on v0.29-gfm from 2019, not v0.29-gfm2 - for example, footnotes are not documented.

A long time ago in a galaxy far, far away... Ref: https://github.com/markedjs/marked/issues/266

Hi, is there a way to enable every extension (tables, strikethrough, etc.) while parsing through the command line? I see that we can enable them individually using the `-e`/`--extension` flag.

Hey all, I'm compiling cmark-gfm (master) on windows using nmake with `x64 Native Tools Developer Command Prompt for VS2019`. When I try com link the .lib with my program the...

I noticed a peculiarity in that headers are not generated on H elements. `# My Title` should evaluate to `My Title` Instead it evaluates to `My Title`. This makes internal...

This PR groups together a handful of fixes for source-position information. They fix a handful of related bugs where a node would have an invalid sourcepos range where the ending...

Fix #222. This PR: * Brings the excellent work of @chriszielinski from PR commonmark/cmark#298 * Fixes other issues mentioned in #222. Quality assurance: * The tests should be thourough enough....