You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bat/tests/syntax-tests/highlighted/Markdown/example.md

40 lines
3.9 KiB
Markdown

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# H1
## H2
### H3
#### H4
##### H5
###### H6
**bold** *italic* ~~strike~~ [~~***link***~~](https://guides.github.com/features/mastering-markdown/)
__bold__ _italic_
* Unordered
* List
 * With Indents
 
1. Ordered
2. List
 3. With Indents
 
![Markdown Logo](https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg)
> quotes
> and more
`fn inline_code() -> String { "inline code".to_string() }`
```rust
 fn syntax_highlighted<T: AsRef<&str>>(thing: T) {
 println!("The best code has syntax highlighting: {}", thing);
 }
```
- [x] Task
- [] Unfinished Task
- [] Another unfinished task
First Header | Second Header
------------ | -------------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column