Supported Markdown
Kabra supports the following core Markdown features:
Headings:
h1throughh6(#through######)Paragraphs and Line Breaks
Text Formatting: Bold (
**text**), Italic (*text*), ~Strikethrough(~~text~~),andUnderline(<u>text</u>viaHTML).Blockquotes: (
> text)Lists: Ordered (
1.), Unordered (-or*), and Task Lists (- [ ]/- [x])Code: Inline code (
code) and Fenced code blocks (```language ````)Links and Images: Standard markdown syntax and autolinks.
Tables: Full support including left, center, and right alignments.
Horizontal Rules: (
---or***)Raw HTML: Supported directly within Markdown.
GitHub-Style Alerts
Kabra supports GitHub-flavored Markdown alerts to highlight important information. These render as styled boxes in the output HTML.
markdown
> [!NOTE]
> Useful information that users should know, even when skimming content.
Useful information that users should know, even when skimming content.
markdown
> [!TIP]
> Helpful advice for doing things better or more easily.
Helpful advice for doing things better or more easily.
markdown
> [!IMPORTANT]
> Key information users need to know to achieve their goal.
Key information users need to know to achieve their goal.
markdown
> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.
Urgent info that needs immediate user attention to avoid problems.
markdown
> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.
Advises about risks or negative outcomes of certain actions.