Немного о markdown

2016-12-06


Иструкция по использованию markdown разметки.

Итак приступаем к изучению markdown

# H1
## H2
### H3
#### H4
##### H5
###### H6

Или альтернативный стиль:

Alt-H1
======

Alt-H2
------

И результат

H1

H2

H3

H4

H5
H6

Или альтернативный стиль:

Alt-H1

Alt-H2

Выделения

Emphasis, aka italics, with *asterisks* or _underscores_.
Strong emphasis, aka bold, with **asterisks** or __underscores__.
Combined emphasis with **asterisks and _underscores_**.
Strikethrough uses two tildes. ~~Scratch this.~~

и вот как это выглядит:

Emphasis, aka italics, with asterisks or underscores. Strong emphasis, aka bold, with asterisks or underscores. Combined emphasis with asterisks and underscores. Strikethrough uses two tildes. Scratch this.

Все очень просто! Теперь дальше

Списки

1. Первый элемент списка
2. Другой элемент
+ суб элемент без номера
1. Номер не имеет значение все равно будет следующий
4. Другой элемент списка

 текст с отступом

* Ненумерованный список
+ можно так
- а можно и так
  1. Первый элемент списка
  2. Другой элемент.
    • суб элемент без номера
  3. Номер не имеет значение все равно будет следующий
  4. Другой элемент списка

    текст с отступом

  • Ненумерованный список
  • можно так
  • а можно и так

Ссылки

[я простая ссылка](https://www.google.com)

[я простая ссылка с тайтлом](https://www.google.com "Google's Homepage")

[I'm a reference-style link][Arbitrary case-insensitive reference text]

[I'm a relative reference to a repository file](../blob/master/LICENSE)

[You can use numbers for reference-style link definitions][1]

Or leave it empty and use the [link text itself].

URLs and URLs in angle brackets will automatically get turned into links. 
http://www.example.com or <http://www.example.com> and sometimes 
example.com (but not on Github, for example).

Some text to show that the reference links can follow later.

[arbitrary case-insensitive reference text]: https://www.mozilla.org
[1]: http://slashdot.org
[link text itself]: http://www.reddit.com

и результат: я простая ссылка

я простая ссылка с тайтлом

я ссылка оппределенная в другом месте

я простая ссылка

You can use numbers for reference-style link definitions

Or leave it empty and use the link text itself.

URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com or http://www.example.com and sometimes example.com (but not on Github, for example).

Some text to show that the reference links can follow later.

Таблицы

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |
Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

перевод. источник: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#code