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

Currently github hyperlinks commit hashes like this: 85d8952 which is super useful. [git-describe](https://git-scm.com/docs/git-describe) produces outputs like this: 0.29.0.gfm.0-27-g85d8952 Format: "$tag-$commits_since_tag-g$commit" It would be great if 85d8952 was hyperlinked in this...

My understanding from the [man page](https://cmark-gfm.docsforge.com/master/man-page-3/#custom-memory-allocator-support) is that cmark-gfm supports custom allocators by providing an API for calling functions of the memory allocator. However, [`table.c`](https://github.com/github/cmark-gfm/blob/b8eb2e00de094999f978e9cb02b1a78d810812d3/extensions/table.c) contains calls to functions defined...

I'm the maintainer of [Markable](https://github.com/pyrmont/markable), a wrapper of cmark-gfm for the [Janet programming language](https://janet-lang.org/). One of the consumers of Markable started getting the following error message intermittently: ```plaintext cmark-gfm/src/blocks.c:282: finalize:...

I'm trying to use an at sign followed by something that looks like a username (but is *not* a GitHub username and should *not* cause a user notification) or a...

With tabs: ``` * text ``` code ``` * text code ``` Output: ``` text code text code ``` Note the extra space for the fenced code block, and 2...

I have failing builds with the Intel Compiler on macOS, because the required C standard is not set with the compiler options. Obviously, cmark requires C99 (because of variable declarations...

I run cmark-gfm in a docker container which builds on a Alpine platform. when i parse below content with cmark-gfm: ```markdown ## 范式 [link](link) | 名称 | 类型 | 描述...

www. is recognized as a link. ![image](https://user-images.githubusercontent.com/12784593/85262082-d421b500-b49f-11ea-9f90-35e8c52ebee0.png) This is surprising given the definition of [extended www autolinks](https://github.github.com/gfm/#extended-www-autolink): > An extended www autolink will be recognized when the text `www.` is...

Other markdown implementations support info strings for inline code: e.g. GitHub Pages uses Jekyll and by extension kramdown where you can use: ```markdown `puts "Hello World"`{:.ruby} ``` Pandoc has a...

When I make the multilevel ordered list, but when I gonna print document without of any css files, list compiled with error started from paragraph 2. **To Reproduce** Steps to...