cmark-gfm
cmark-gfm copied to clipboard
GitHub's fork of cmark, a CommonMark parsing and rendering library and program in C
We've implemented an automated [GFM editor](https://github.com/orchitech/redmine_reformat/blob/master/lib/redmine_reformat/converters/gfm_editor.rb), which depends heavily on sourcepos, which is currently widely broken. I will sum app all the issues here and then will link a pull...
(not sure if the issue belongs to this library) Pipes did not render with a monospace font. ``` ╔═════════╦═════════╦═════════╦═════════╦═════════╗ ║ Size ║ OpenSSL ║ OpenSSL ║This work║ Speedup ║ ║...
Before this change, if you use cmark concurrently, you could run into concurrent access because the `SPECIAL_CHARS` table was globally shared with potential read and write. This change stores the...
Should it be possible to call `cmark_syntax_extension_set_special_inline_chars` with characters that already have a special meaning MarkDown such as `\`? If an extension calls this, it causes a problem in [`process_inlines()`](https://github.com/github/cmark-gfm/blob/master/src/blocks.c#L445)...
According to [GFM spec on hard line breaks](https://github.github.com/gfm/#hard-line-break), this Markdown: ```md one two ``` should render as: ```html one two ``` This happens when GitHub previews Markdown files like `README.md`...
(This is more of a https://github.github.com/gfm/ issue, but I really can't find a separate repo for it. Where on Earth is its repo?) The GitHub renderer on GitHub.com seems to...
I was able to build cmark-gfm for WebAssembly. Here is the branch in my fork where I have been doing this development: https://github.com/bolinfest/cmark-gfm/commits/wasm-demo and here is a basic demo: http://bolinfest.com/gfm/...
The functionality of `make libFuzzer` is broken since outdated `src/CMakelist.txt`. Because the `test/cmark-fuzz.c` includes the code under `extensions/*`, the Makefile for libFuzzer shall also include the code in extensions. Current...
From what I understand, - Autolink assumes only domains with a leading `www.` should be linked. Many domains are configured to redirect to the "bare" variant without the www since...
how can add target="_blank" to markdown links `[test](http://test.com)` in github?! See https://github.com/mojombo/github-flavored-markdown/issues/28 which seems to be the wrong project and check all the comments there. Is this project the right...