CommonMark.NET icon indicating copy to clipboard operation
CommonMark.NET copied to clipboard

Implementation of CommonMark specification in C# for converting Markdown documents to HTML. Optimized for maximum performance and portability.

Results 16 CommonMark.NET issues
Sort by recently updated
recently updated
newest added

I'm trying to convert the below as a table in HTML. ## Tables | Option | Description | | ------ | ----------- | | data | path to data files...

I'm back with my hat in hand :) Plain text output please, with hard line breaks at a set column. Currently I do this with pandoc ``` pandoc -f markdown...

enhancement

This is just noise; I forgot to remove it before submitting #122.

* Create NuGet packages during builds, and create a symbol/source package alongside the main package * Move cmark.exe to a separate NuGet package * Remove the explicit .nuspec files in...

@Knagis, So I've had some solid progress on enabling extensions. Now I'd appreciate your feedback on pre-existing features in this regard. 1. [x] Strikeout seems to me as an obvious...

I want to add a few basic extensions using CommonMark.NET: image dimensions/alignment and tables. Is there a way of plugging into the parser yet to do this? Some suggestions on...

question

This implements support for parsing YAML blocks and front-matter following the [Pandoc rules](http://pandoc.org/MANUAL.html#extension-yaml_metadata_block): 1. Delimited by three hyphens (---) at the top 2. Delimited by three hyphens (---) or dots...

Hi, I took the code from https://github.com/Knagis/CommonMark.NET/pull/90 and tried to fix your comments. Would close #42. /ekblom

I don't want to allow the heading features of markdown for the users.

What is the easiest way to implement something similar to StackOverflow comments section? They refer to it as 'mini-Markdown': only italic, bold and code is allowed. So a white list...