Copy the prompt below to use with AI systems. Click the copy button on the code block:
## MARKDOWN ELEMENTS### 1. HeadingsUse hash symbols followed by space and text. Number of hashes = heading level (1-6).# Heading 1## Heading 2### Heading 3### 2. BoldWrap text with ** or __.**bold text**### 3. ItalicWrap text with * or _.*italic text*### 4. Inline CodeWrap text with backticks.`code`### 5. StrikethroughWrap text with ~~.~~strikethrough~~### 6. SubscriptWrap text with ~.H~2~O### 7. SuperscriptWrap text with ^.E = mc^2^### 8. LinksUse [text](url) format.[Link text](https://example.com)### 9. BlockquotesStart lines with >. Use >> for nested quotes.> This is a quote>> Nested quote### 10. Ordered ListsStart with number + period. Supports: 1., a., A., i., I.1. First item2. Second item### 11. Unordered ListsStart with - or *.- Item one- Item two### 12. Task ListsUse - [ ] for unchecked, - [x] for checked.- [ ] Unchecked task- [x] Checked task### 13. AlertsUse blockquote with [!TYPE] on first line. TYPE can be NOTE, TIP, IMPORTANT, WARNING, CAUTION.> [!NOTE]> This is a note> [!TIP]> This is a tip> [!IMPORTANT]> This is important> [!WARNING]> This is a warning> [!CAUTION]> This is a caution### 14. Code BlocksWrap with triple backticks and language name.### 15. Inline MathWrap with single $.$E = mc^2$### 16. Block MathWrap with double $$.$$\sum_{i=1}^{n} x_i$$### 17. Mermaid DiagramsUse code block with mermaid language.### 18. TablesUse pipes | to separate columns, hyphens for header separator.| Header 1 | Header 2 ||----------|----------|| Cell 1 | Cell 2 |### 19. Table AlignmentUse colons in separator row.| Left | Center | Right ||:-----|:------:|------:|| A | B | C |### 20. Table ColspanUse multiple consecutive pipe characters (|||) to span columns.| Spans 3 columns |||### 21. Table RowspanUse ^ in cell below to merge with cell above.| Cell spans || two rows ^ |### 22. Table FooterAdd separator row with |---|.| Data ||-------|| Value ||-------|| Total |### 23. FootnotesReference with [^id], define with [^id]: text.Text with footnote[^1][^1]: Footnote definition### 24. CitationsReference sources with their key (or nested key) in square brackets [key]. Use spaces for multiple citations.The key should point to a source in the sources object that has been given to you.According to research[smith2023] and studies[jones2024]### 25. Description ListsUse : term : definition format.: Term 1 : Definition 1: Term 2 : Definition 2### 26. MDX ComponentsEmbed custom components using JSX-style syntax with PascalCase names.Self-closing:<ComponentName attribute="value" count={42} enabled={true} />With markdown children:<ComponentName title="Hello"># This is markdownContent with **formatting**</ComponentName>Attributes:- Strings: attribute="text"- Numbers: count={42} or value={3.14}- Booleans: enabled={true} or disabled={false}- Expressions: value={variableName}Component names MUST start with capital letter.Below are examples of all supported features rendered with Svelte Streamdown:
**text** or __text__*text* or _text_Inline code: code~~text~~~text~^text^All heading levels supported:
External links and relative links [blocked]
This is a blockquote
It can span multiple lines
And support nesting
This is a note alert
This is a tip alert
This is an important alert
This is a warning alert
This is a caution alert
function example() { console.log('Syntax highlighting supported'); return 'Many languages available';}def hello_world(): print("Python syntax highlighting") return "Hello, World!"The famous equation demonstrates mass-energy equivalence.
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Cell A | Cell B | Cell C |
| Cell D | Cell E | Cell F |
| Left | Center | Right |
|---|---|---|
| A | B | C |
| D | E | F |
| H1 | H2 | H3 |
|---|---|---|
| This cell spans 3 columns | ||
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| This cell spans 2 columns | Normal | |
| Normal | Normal | Normal |
| Header 1 | Header 2 |
|---|---|
| This cell spans two row | Cell A |
| Cell B |
| Header 1 | Header 2 |
|---|---|
| Cell A | Cell B |
| Footer | Footer |
This is some text with a footnote reference.
Use inline citations to reference sources: .
Multiple citations:
MDX components allow embedding custom Svelte components in markdown:
This is markdown content inside a custom component.
You can use any markdown features inside MDX components.
Self-closing or with children - both work!
MDX components must start with a capital letter (PascalCase) to be recognized. Lowercase tags are treated as regular HTML.