cmark-gfm
cmark-gfm copied to clipboard
GitHub's fork of cmark, a CommonMark parsing and rendering library and program in C
``` file libcmark-gfm.dylib cmark-gfm [master] libcmark-gfm.dylib: Mach-O 64-bit dynamically linked shared library x86_64 ``` How do I make this lib arm64 so that it can be linked in a arm64...
Adding a PHP wrapper example using FFI. Instead of using stdin, I chose to have a default markdown just to be more simple to execute the test. But that can...
cmark-gfm is used by a number of apps that interface with text-generating Large Language Models (LLMs) ([this one](https://github.com/psugihara/FreeChat) and [this one](https://github.com/gonzalezreal/swift-markdown-ui/discussions/261) are the ones I know). These models produce a...
Sometimes users of markdown will want to add a clickable image into their content. This is done using the following syntax: ``` [](http://.../website) ``` This used to get turned...
Given the content: ```markdown # Table test | column 1 | column 2 | | --- | --- | | this is a very long row | longer than width...
### Proposal When you create a header markdown header, an anchor is created for you and special characters are removed and spaces are trimmed. This works great... mostly. There are...
When linking to a heading within a markdown file, one has to rely on auto-generated heading IDs, which are a lowercase, hyphenated version of the heading text. IDs for headings...
In the review of this package inclusion into Fedora it was noted that some files have been stripped of their copyrights. Though they are in the COPYING file, it would...
For context, this fixes issue #245 Fixed a regression introduced in 0.29.0.gfm.2, where cmark-gfm would emit empty data-* attributes in HTML renderer, valid as HTML5, but invalid as XHTML. I...
Hi! I'm working on an autogenerated markdown file for my repo. I want to have non-breaking spaces in the rendered markdown on the GitHub website. However, I can't figure out...