mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-24 01:18:56 +00:00

* chore: rename flowy-folder2 to flowy-folder * chore: rename flowy-document2 to flowy-document * chore: fix test * chore: move lib-infra crate * chore: remove shared-lib * chore: fix clippy
64 lines
1022 B
Plaintext
64 lines
1022 B
Plaintext
# The Notion Document
|
||
|
||
# Heading-1
|
||
|
||
## Heading - 2
|
||
|
||
### Heading - 3
|
||
|
||
This is a paragraph
|
||
|
||
paragraph’s child
|
||
|
||
- This is a bulleted list - 1
|
||
- This is a bulleted list - 1 - 1
|
||
- This is a bulleted list - 2
|
||
|
||
This is a paragraph
|
||
|
||
- [ ] This is a todo - 1
|
||
- [ ] This is a paragraph - 1-1
|
||
1. This is a numbered list -1
|
||
|
||
This is a paragraph
|
||
|
||
- This is a toggle list
|
||
|
||
This is a toggle child
|
||
|
||
|
||
> This is a quote
|
||
>
|
||
>
|
||
> This is a quote child
|
||
>
|
||
|
||
This is a paragraph
|
||
|
||
---
|
||
|
||
```jsx
|
||
// This is the main function.
|
||
fn main() {
|
||
// Print text to the console.
|
||
**println**!("Hello World!");
|
||
}
|
||
```
|
||
|
||
This is a paragraph
|
||
|
||
<aside>
|
||
💡 callout
|
||
|
||
</aside>
|
||
|
||
This is a paragraph font-color bg-color **bold** *italic underline ~~strike-through~~ `inline-code` $inline-formula$ [link](https://www.notion.so/The-Notion-Document-d4236da306b84f6199e4091705042d78?pvs=21)*
|
||
|
||
$$
|
||
|x| = \begin{cases}
|
||
x, &\quad x \geq 0 \\
|
||
-x, &\quad x < 0
|
||
\end{cases}
|
||
$$
|
||
|
||
End |