- Update to latest CommonMark specs 0.29 ((PR #327))
- Add
AutoLinkOptions
withOpenInNewWindow
,UseHttpsForWWWLinks
((PR #327)) - Add
DisableHeadings
extension method toMarkdownPipelineBuilder
((PR #327)) - Drop support for netstandard1.1 and Portable Class Libraries ((PR #319))
- Allow non-ASCII characters in url domain names ((PR #319))
- Add better support for youtu.be link ((PR #336))
- Fix backsticks in Markdown.Normalize ((PR #334))
- Improve performance of emoji-abbreviation parser ((PR #305))
- Change output for math extension to use a rendering more compatible with existing Math JS libraries ((PR #311))
- Improve emphasis parser to allow to match more than 2 characters ((PR #301))
- Output attached attributes to a
<tr>
from a table row ((PR #300)) - Improve MarkdownObject.Descendants() search ((PR #288))
- Allow to pass a
MarkdownParserContext
((PR #285))
- Add configurable leading count for ATX headers ((PR #282))
- Render XML well-formed boolean attribute ((PR #281))
- Fix potential hang when parsing LinkReferenceDefinition #278
- Fix parsing of an invalid html entity (#277)
- Fix IndexOutOfRangeException while parsing fenced code block with a single trailing space (#276)
- Add tests for checking that ArgumentOutOfRangeException doesn't occur on invalid input md string (#275)
- Empty image alt text for link reference definitions ((PR #254))
- Fix AutoLink Match links without slash after domain ((PR #260))
- Make AutoLink ValidPreviousCharacters configurable ((PR #264))
- Ensuring line breaks when renderer does not have html enabled ((PR #270))
- Add autolink domain GFM validation ((PR #253))
- Add support for RTL ((PR #239))
- Add MarkdownDocument.LineCount ((PR #241))
- Fix source positions for link definitions ((PR #243))
- Add ListItemBlock.Order ((PR #244))
- Add MarkdownDocument.LineStartIndexes ((PR #247))
- Fix footnotes parsing when they are defined after a container that has been closed in the meantime (#223)
- Add support for
netstandard2.0
- Make AutoIdentifierExtension thread safe
- Add
ConfigureNewLine
extension method toMarkdownPipelineBuilder
((PR #214)) - Add alternative
Use
extension method toMarkdownPipelineBuilder
that receives an object instance ((PR #213)) - Added class attribute to media link extension ((PR #203))
- Optional link rewriter func for HtmlRenderer #143 ((PR #201))
- Upgrade NUnit3TestAdapter from 3.2 to 3.9 to address Resharper test runner problems ((PR #199))
- HTML renderer supports converting relative URLs on links and images to absolute #143 ((PR #197))
- AutoLinkParser should to remove mailto: in outputted text ((PR #195))
- Add support for
music.yandex.ru
andok.ru
for MediaLinks extension ((PR #193))
- Fix potential StackOverflow exception when processing deep nested
|
delimiters (#179)
- Fix autolink attached attributes not being displayed properly (#175)
- Fix yaml frontmatter issue when ending with a empty line (#170)
- Fix changelog link from nuget package
- Add changelog.md
- Fix bug when a thematic break is inside a fenced code block inside a pending list (#164)
- Add support for GFM autolinks (#165, #169)
- Better handle YAML frontmatter in case the opening
---
is never actually closed (#160) - Fix link conflict between a link to an image definition and heading auto-identifiers (#159)
- Make EmojiExtension.EnableSmiley public
- Fix issue with emphasis preceded/followed by an HTML entity (#157)
- Add support for link reference definitions for Normalize renderer (#155)
- Add option to disable smiley parsing in EmojiAndSmiley extension
- Fix crash in Markdown.Normalize to handle HtmlBlock correctly
- Add better handling of bullet character for lists in Markdown.Normalize
- Add Markdown.ToPlainText, Add option HtmlRenderer.EnableHtmlForBlock.
- Add Markdown.Normalize, to allow to normalize a markdown document. Add NormalizeRenderer, to render a MarkdownDocument back to markdown.
- Add support for single table header row without a table body rows (#141)
- ADd support for
nomnoml
diagrams
- Add support for Pandoc YAML frontmatter (#138)
- Add support for UAP10.0 (#137)
- Fix indenting issue after a double digit list block using a tab (#134)
- Update to latest CommonMark specs 0.28
- Fix issue with HTML blocks for heading h2,h3,h4,h5,h6 that were not correctly identified as HTML blocks as per CommonMark spec
- Fix issue with generic attributes used just before a pipe table (issue #121)
- Fix issue with media links extension when a URL to video is used, an unexpected closing
</iframe>
was inserted (issue #119)
- Add new extension JiraLink support (thanks to @clarkd)
- Fix issue in html attributes not parsing correctly properties (thanks to @meziantou)
- Fix issues detected by an automatic static code analysis tool
- Fix issue with math extension and $$ block parsing not handling correctly beginning of a $$ as a inline math instead (issue #107)
- Fix issue with custom attributes for emphasis
- Add support for new special custom arrows emoji (
->
<-
<->
<=
=>
<==>
)
- Fix issue when an url ends by a dot
.
- Fix emphasis with HTML entities
- Several minor fixes
- Fix issue with autolinks
- Normalize number of columns for tables
- Fix issue with pipetables shifting a cell to a new column (issue #73)
- Fix exception when trying to urlize an url with an unicode character outside the supported range by NormD (issue #75)
- Update to latest CommonMark specs
- Fix source span for LinkReferenceDefinition
- Breaking change of the IMarkdownExtension to allow to receive the MarkdownPipeline for the renderers setup
- Fix regression bug with conflicts between autolink extension and html inline/regular links
- Add new Autolink extension
- Allow to force table column alignment to left
- Fix issue when calculating the span of an indented code block within a list. Make sure to include first whitespace on the line
- fix NullReferenceException with Gridtables extension when a single
+
is entered on a line
- fix potential cast exception with Abbreviation extension and empty literals
- new extension to disable URI escaping for non-US-ASCII characters to workaround a bug in Edge/IE
- Fix an issue with abbreviations with left/right multiple non-punctuation/space characters
- Update to latest CommonMark specs
- Fix empty literal
- Add YAML frontmatter extension
- several bug fixes (pipe tables, disable HTML, special attributes, inline maths, abbreviations...)
- add support for rowspan in grid tables
- Fix bug with strong emphasis starting at the beginning of a line
- Fix threading issue with pipeline
- Fix rendering of table colspan with non english locale
- Fix grid table colspan parsing
- Add nofollow extension for links
- Fix issue in smarty pants which could lead to an InvalidCastException
- Update parsers to latest CommonMark specs
- Update to latest NETStandard.Library 1.6.0
- Fix issue with digits in auto-identifier extension
- Fix incorrect start of span calculated for code indented blocks
- Handle latest CommonMark specs for corner cases for emphasis (See https://talk.commonmark.org/t/emphasis-strong-emphasis-corner-cases/2123/1 )
- Fix issue with autoidentifier extension overriding manual HTML attributes id on headings
- Fix conflicts between PipeTables and SmartyPants extensions
- Add SelfPipeline extension