Reviewed on July 22, 2026Product version 1.8.2
On this page
Markdown Examples
This page shows:
- the source code you can copy;
- the result you should see in the app.
1. Heading and list
Source
## My list
- Task 1
- Task 2
- Task 3
Result
My list
- Task 1
- Task 2
- Task 3
2. Checklist
Source
- [x] Document created
- [x] Content reviewed
- [ ] Publish final version
Result
- Document created
- Content reviewed
- Publish final version
3. Table
Source
| Item | Status |
|---|---|
| Tutorial | Done |
| Examples | Done |
| Final review | In progress |
Result
| Item | Status |
|---|---|
| Tutorial | Done |
| Examples | Done |
| Final review | In progress |
4. Code block
Source
```js
const name = "Raziel.MD"
console.log(name)
```
Result
const name = "Raziel.MD"
console.log(name)
5. Mermaid (regular format)
Source
```mermaid
flowchart TD
A[Upload] --> B[Reading]
B --> C[Viewing]
```
Result
flowchart TD
A[Upload] --> B[Reading]
B --> C[Viewing]
6. Mermaid (Azure format)
Source
::: mermaid graph LR A[File] --> B[Conversion] B --> C[Diagram ready] :::
Result
::: mermaid graph LR A[File] --> B[Conversion] B --> C[Diagram ready] :::
7. Link to another file
Source
[Open full example](./example.md)