cmark-gfm
cmark-gfm copied to clipboard
GitHub's fork of cmark, a CommonMark parsing and rendering library and program in C
Following the installation guide did not enable the extensions. ``` mkdir build cd build cmake .. # optionally: -DCMAKE_INSTALL_PREFIX=path make # executable will be created as build/src/cmark make test make...
#### Problem Take for example: ```markdown [^a b]: # c xxx[^a b]. ``` Yields: [^a b]: # c xxx[^a b]. --- For some reason, the `a\nb` disappear from both places....
It would be great to be able to reliably CSS style images rendered by `cmark-gfm` separately from other images that might appear on a site. As far as I can...
There's a PR open [here](https://github.com/erusev/parsedown/pull/538) which suggests allowing tables with all empty header cells be rendered without the header all together. The proposed syntax is something like: Non-empty (should include...
```markdown a www. b ``` Yields: a www. b --- It seems that when `www.` is found, it is then parsed *again* as a domain, of which the dot makes...
The prefix `www`, for autolink literals, only matches when lowercase, in comments. This is different from how the protocol prefix (`http://`, `https://`) is handled, which is matched case-insensitive. It is...
### Problem Consider: ```markdown x www.example.com [ www.example.com ![ www.example.com [^ www.example.com [] www.example.com --- x https://example.com [ https://example.com ![ https://example.com [^ https://example.com [] https://example.com --- x [email protected] [ [email protected]...
Take this example: ```markdown | Head | | ------------- | | A | Alpha | | B \| Bravo | | C \\| Charlie | | D \\\| Delta |...
I saw this MAC in the wild today: b0:de:ad:4a:47:ce:8c:96 (`b0:de:ad:4a:47:ce:8c:96`). I dont think that's supposed to be like that.
```markdown [^[link](#)] [^] ``` [^[link](#)] [^] Note that it’s fine for links, but not for images. To compare, some examples that show how CommonMark normally handles brackets around links and...