mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-13 21:42:57 +00:00
Reading table from MarkdownDocument instance #518
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 @dejanstojanovic on GitHub (Mar 22, 2022).
Hi,
I am trying to read simple table like the one below from an instance of MarkdownDocument.
What I do is creating MarkdownDocument with simple Markdown.Parse and I try to look through it.
The table is translated as ParagraphBlock with all rows as LiteralInline.
Is there a way to parse this to tabular like data structure sot that I can iterate through rows/cells?
@dejanstojanovic commented on GitHub (Mar 24, 2022):
Figured it out, I have to use the pipeline for the table. I guess this can be closed.