flowtoken
Version:

74 lines (47 loc) • 985 B
text/typescript
export const text = `
# Main Heading(H1)

## Subheading(H2)
### Another Subheading(H3)
*Regular* text is <test text="hello" /> just written as plain text. You can add **bold** text, *italic* text, and even ***bold italic*** text.
You can also create hyperlinks: [OpenAI](https://www.openai.com)
### Lists
#### Unordered List
- Item 1 and some *more*
- Item 2
- Subitem 2.1
- Subitem 2.2
- Item 3
#### Ordered List
1. First Item
2. Second Item
3. Third Item
### Code
\`Inline code\` with backticks.
\`\`\`python
# Python code block
def hello_world():
print("Hello, world!")
\`\`\`
### Blockquotes
> This is a blockquote.
>
> This is part of the same quote.
### Tables
A table:
| a | b |
| - | - |
| 1 | 2 |
| 3 | 4 |
### Images

### Horizontal Rule
### Task List
- [x] Task 1 completed
- [ ] Task 2 not completed
- [ ] Task 3 not completed
`