mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Reading table from MarkdownDocument instance #515
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?