data property

String data
final

The Markdown text to render.

This string will be parsed and rendered according to CommonMark and GFM specifications. Supports all standard markdown syntax including headers, lists, code blocks, tables, links, images, and inline formatting (bold, italic, code, etc.).

Example:

data: '''
# Hello World

This is a paragraph with **bold** and *italic* text.

- List item 1
- List item 2
'''

Implementation

final String data;