mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-12 21:39:32 +00:00
Issue rendering tables with certain markup #85
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tobiasbunyan on GitHub (Jan 24, 2017).
Having problems with tables when adding a table referencing source control paths. For example, this renders ok
but add in / to the second path value
and the output goes wonky
Escaping the second
(i.e. \\) fixes the problem. I'm not aware of $ being a special char in markdown?This is experienced in the preview window of the Markdown Editor visual studio extension version 1.10.186 on Visual Studio Enterprise 2015 14.0.25431.01 Update 3.
madskristensen/MarkdownEditor#90
@Kryptos-FR commented on GitHub (Jan 25, 2017):
Confirmed by https://babelmark.github.io/?text=Status%7CPath%0A------%7C----%0AActive%7C%24%2Fval%0AActive%7C%24%2Fval and seems to be markdig-only issue.
@xoofx commented on GitHub (Jan 26, 2017):
Yes, the
$is used by the extension mathematics and it look like it has a higher precedence than table pipes|... when markdig is configured with advanced extension, the math extension is enabled (and Markdown Editor is using this).I'm quite busy this week... so won't be able to look at this before next week
@xoofx commented on GitHub (May 8, 2017):
Fixed by commit
26a565fa45