Enum MarkdownTableStyle
How the Markdown writer represents a table.
public enum MarkdownTableStyle
Fields
Pipe = 0A GFM pipe table. Requires GitHubFlavored; under CommonMark the writer falls back to Paragraphs and reports it.
Paragraphs = 1Each cell as its own paragraph, in row-major order. Lossy and readable, and the only representation that survives a table CommonMark cannot express — one with a merged cell, a nested table, or block content in a cell.