config property
Configuration options for Markdown parsing behavior.
Controls which markdown features are enabled and how they are parsed. If not provided, uses default configuration with most features enabled.
Example:
config: MarkdownConfig(
enableCodeHighlight: true,
enableTables: true,
enableTaskLists: true,
enableLatex: true,
syntaxHighlightTheme: 'monokai',
)
See MarkdownConfig for all available options.
Implementation
final MarkdownConfig? config;