Table of Contents

Enum MarkdownTableStyle

Namespace
DocWright.Formats.Markdown
Assembly
DocWright.Formats.Markdown.dll

How the Markdown writer represents a table.

public enum MarkdownTableStyle

Fields

Pipe = 0

A GFM pipe table. Requires GitHubFlavored; under CommonMark the writer falls back to Paragraphs and reports it.

Paragraphs = 1

Each 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.