mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-04 05:44:50 +00:00
PipeTable fails to process table when empty code blocks are present #675
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 @agr on GitHub (May 9, 2024).
Run the following code:
It produces the following output:
I.e. it fails to render the table as an HTML table. Removing any of the rows or putting something inside any backtick pairs makes it work as expected.
@MihaZupan commented on GitHub (May 9, 2024):
Likely a duplicate of #176
Note that
in markdown is not an empty code inline, but the start of one that is delimited by two backticks. E.g. so that you can do
@agr commented on GitHub (May 9, 2024):
Makes sense, especially since it happens when they come in pairs.