You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use markdig in a project to normalize incoming Markdown files and to gather metadata about the document. Now some of these documents include tables and I noticed that they are not rendered at all (I use a JS renderer for markdown, but that one works just fine). As it turns out, markdig seems to strip all table symbols in the normalization step.
I think you are just missing a pipeline.Setup(renderer) call to add the renderer for tables.
Edit: On second thought, I don't think we have a normalization renderer for tables at all.
Normalization is way less polished than Html, and isn't implemented for most extensions.
Hi, great project!
I use markdig in a project to normalize incoming Markdown files and to gather metadata about the document. Now some of these documents include tables and I noticed that they are not rendered at all (I use a JS renderer for markdown, but that one works just fine). As it turns out, markdig seems to strip all table symbols in the normalization step.
I have a reproduction, which closely resembles the actual code used: https://github.com/ricardoboss/markdig-table-normalization
The gist of it is this:
Program.cs
test.md
And I expected the output to be same or somewhat formatted, but the actual output is this:
The text was updated successfully, but these errors were encountered: