feat: test md file
This commit is contained in:
parent
7a0aad81aa
commit
92f50a2f7a
1 changed files with 57 additions and 0 deletions
57
source/test.md
Normal file
57
source/test.md
Normal file
|
@ -0,0 +1,57 @@
|
|||
---
|
||||
mydata: 123
|
||||
---
|
||||
|
||||
# Заголовок 1
|
||||
## Заголовок 2
|
||||
|
||||
###### Заголовок 6
|
||||
|
||||
|
||||
|
||||
- ненумерованный список, элемент 1
|
||||
- элемент 2
|
||||
- element 3
|
||||
|
||||
1. раз
|
||||
2. два
|
||||
3. три
|
||||
|
||||
- [x] Done
|
||||
- [ ] Todo
|
||||
- [ ] Won't fix
|
||||
|
||||
> [!WARNING]
|
||||
>
|
||||
> Some important quote
|
||||
|
||||
|
||||
text text text `inline code` text text text
|
||||
|
||||
```rs
|
||||
#[tokio::main]
|
||||
async fn main() -> std::io::Result<()> {
|
||||
let cfg = tokio::fs::read_to_string("config.txt");
|
||||
let cfg: Vec<std::borrow::Cow<str>> = cfg.split(';').collect();
|
||||
println!(cfg.first().unwrap_or("hello".into()));
|
||||
Ok(())
|
||||
}
|
||||
```
|
||||
|
||||
***
|
||||
|
||||
Link to [example](https://example.com), image ![abc](https://example.com).
|
||||
Lorem ipsum
|
||||
**dolor *sit*** amet \
|
||||
consectuer ~~что-то там~~.[^1]
|
||||
|
||||
|Title| Price|Quantity| Cost|
|
||||
|-----|-----:|-------:|-----:|
|
||||
|Abcde|115.23| 0.100| 11.52|
|
||||
|Qwert|221.00| 1|221.00|
|
||||
|
||||
*H*ell**o** `W`or[ld][1]
|
||||
|
||||
[1]: abc
|
||||
|
||||
[^1]: def
|
Loading…
Add table
Reference in a new issue