Markdown Cheat Sheet
Заголовок первого уровня
# Заголовок первого уровня
Заголовок второго уровня
## Заголовок второго уровня
Заголовок третьего уровня
### Заголовок третьего уровня
Заголовок четвертого уровня
#### Заголовок четвертого уровня
Заголовок пятого уровня
##### Заголовок пятого уровня
Заголовок шестого уровня
###### Заголовок шестого уровня
Bold
bold
**bold**
Italic
italic
*italic*
Bold & Italic
bold italic
***bold italic***
Strikethrough
strikethrough
~~strikethrough~~
Blockquote
blockquote
blockquote
blockquote
> blockquote
> blockquote
> blockquote
Ordered List
- First item
- Second item
- Third item
1. First item
2. Second item
3. Third item
Unordered List
- First item
- Second item
- Third item
- First item
- Second item
- Third item
Code
code
`code`
Horizontal Rule
***
Link
[title](https://dmntv.ru)
Image
![alt text](/design/images/oldlace.svg)
Table
Header Left | Header Center | Header Right |
---|---|---|
Text | Text | Text |
Text | Text | Text |
| Header Left | Header Center | Header Right |
| :------------ | :-----------: | ------------: |
| Text | Text | Text |
| Text | Text | Text |
Extra Markdown Cheat Sheet
Специальные атрибуты
Cпециальные атрибуты могут использоваться с:
- заголовки,
- огороженные блоки кода,
- ссылки
- изображения
[dmntv.ru](https://dmntv.ru){.button #someid}
Markdown внутри HTML
This is true markdown text.
<div markdown="1">
This is *true* markdown text.
</div>
Списки определений
- Термин
- Определение
- Термин
- Определение
- Термин
- Определение
Термин
: Определение
Термин
: Определение
Термин
: Определение
Сноски
That's some text with a footnote.1
That's some text with a footnote.[^1]
[^1]: And that's the footnote.
Сокращения
The HTML specification is maintained by the W3C.
*[HTML]: Hyper Text Markup Language
*[W3C]: World Wide Web Consortium
The HTML specification
is maintained by the W3C.
-
And that's the footnote. ↩