Markdown Features
Every Markdown element supported by GptMarkdown. All features work out of the box with no configuration.
| Feature | Notes | Status |
|---|---|---|
| Headings (H1–H6) | All six heading levels with auto-divider under H1. | ✅ |
| Bold & italic | **bold**, *italic*, and ***both***. | ✅ |
| Strikethrough | ~~strikethrough~~ text. | ✅ |
| Underline | <u>underline</u> via HTML tag. | ✅ |
| Inline code | `backtick` inline code spans. | ✅ |
| Code blocks | Fenced code blocks with syntax highlighting. | ✅ |
| Unordered lists | Bullet point lists, with nesting. | ✅ |
| Ordered lists | Numbered lists. | ✅ |
| Task lists (checkboxes) | - [x] done / - [ ] pending | ✅ |
| Radio buttons | - (x) selected / - ( ) unselected | ✅ |
| Tables | Full GFM-style pipe tables. | ✅ |
| Blockquotes | > quoted text | ✅ |
| Horizontal rule | --- horizontal divider line. | ✅ |
| Links | [text](url) with onLinkTap callback. | ✅ |
| Images |  with optional size. | ✅ |
| Inline LaTeX | \\( ... \\) and $...$ math expressions. | ✅ |
| Block LaTeX | \\[ ... \\] and $$...$$ display equations. | ✅ |
| Highlighted text | ==highlighted== background spans. | ✅ |
| Indent | Indented text blocks. | ✅ |
| Selectable text | Text is selectable by default. | ✅ |
| RTL support | textDirection: TextDirection.rtl | ✅ |
| Custom builders | codeBuilder, latexBuilder, linkBuilder, imageBuilder, and more. | ✅ |