cmark-gfm
cmark-gfm copied to clipboard
GitHub's fork of cmark, a CommonMark parsing and rendering library and program in C
Given markdown input ```md a statement[^1] [^1]: this is true ``` Converting to `FORMAT_HTML` while enabling `CMARK_OPT_FOOTNOTES` works: ```html a statement1 this is true ↩ ``` However, converting to `FORMAT_XML`...
Currently LaTeX output for footnotes is not implemented: https://github.com/github/cmark-gfm/blob/c32ef78bae851cb83b7ad52d0fbff880acdcd44a/src/latex.c#L447-L449 I don't have much expertise on C but I wonder if the team is interested in getting it implemented. Basically what...
There is no reference to footnotes in the linked specs. Is that simply missing, because it was never written, or where could we find them? Reason being the decision to...
[Spec](https://github.github.com/gfm/#:~:text=Trailing%20punctuation%20(specifically%2C%20%3F%2C%20!%2C%20.%2C%20%2C%2C%20%3A%2C%20*%2C%20_%2C%20and%20~)%20will%20not%20be%20considered%20part%20of%20the%20autolink%2C%20though%20they%20may%20be%20included%20in%20the%20interior%20of%20the%20link%3A) says > Trailing punctuation (specifically, ?, !, ., ,, :, *, _, and ~) will not be considered part of the autolink, though they may be included in the...
My journey of discovery brings me to you. I am using goldmark in Hugo to display a small front end for our course and while I was testing I noticed...
This seems to be the root cause of #163 still happening on Fedora. Here is a demonstration (where I had a bad version installed already): ``` [redacted@redacted build]$ sudo make...
Over in Debian, we're seeing a few tests fail only on big-endian architectures (s390x, sparc64, ppc64, etc) with 0.29.0.gfm.6: ``` make[1]: Entering directory '//obj-s390x-linux-gnu' Running tests... /usr/bin/ctest --force-new-ctest-process --verbose -j2...
Hello, building on https://github.com/gjtorikian/commonmarker/issues/124 , would it be possible to add support for having example code snippets in multiple programming languages, similar to https://yassir.dev/markdown-fenced-code-tabs/ please? Thank you kindly :)
Users of the R bindings have found that the tagfilter extension does not do anything right now: https://github.com/r-lib/commonmark/issues/15 What other parsing options have to be enabled for the tagfilter to...
Contrary to what [the spec](https://github.github.com/gfm/#disallowed-raw-html-extension-) says, there are additional HTML tags that aren't rendered on GitHub.com. For example, `test` produces the HTML `test`, like this: test. It would be helpful...