Markdown core exmaple - arcturus9/useful-link GitHub Wiki
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/user/markdown.md
'''> ๋ค์ฌ์ฐ๊ธฐ'''
๋ค์ฌ์ฐ๊ธฐ
'''๊ธฐ์ธ์ฌ์ฐ๊ธฐ'''
๊ธฐ์ธ์ฌ์ฐ๊ธฐ
'''> ์์์ฒ๋ฆฌ'''
์์์ฒ๋ฆฌ
1๋จ๊ณํฌ๊ธฐ
2๋จ๊ณ ํฌ๊ธฐ
3๋จ๊ณ ํฌ๊ธฐ
๊ทธ๋ฅ ํฌ๊ธฐ
- ์ ๊ตฌ๋ถ
- ์ ๊ตฌ๋ถ2
- ์ ๊ตฌ๋ถ3
1. ๋ฐ์ค์์ ์ฐ๊ธฐ
- test
> test
์์ ํ์
๋ค์นธ๋๋ฉด ๋ฐ์ค๋๋?
์ ๋ง์ด๋ค
์๋๋ฉด ๋ฐ์ค ์์
์ ๋ง์ด๋ค
- ๋ณํ์์ด๋
- ๋นผ๊ธฐํ์๋ ๋๊ฐ์ด ์ ์ผ๋ก ๋ณด์
๋งํฌ๋ ์คํ ๋งํฌ ๋จ http://www.google.com
์ฝ๋ ํ์ํ๋ ค๋ฉด ์๋ ์ฒ๋ผ
def function():
#indenting works just fine in the fenced code block
s = "Python syntax highlighting"
print s
Emogi
Sometimes you want to :monkey: around a bit and add some :star2: to your :speech_balloon:. Well we have a gift for you:
Table
input | references |
---|---|
@user_name |
specific user |
@group_name |
specific group |
Math
Example:
This math is inline $`a^2+b^2=c^2`$.
This is on a separate line
```math
a^2+b^2=c^2
```
Becomes:
This math is inline $a^2+b^2=c^2
$.
This is on a separate line
a^2+b^2=c^2
Mermaid
Example:
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```
Becomes:
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
Emphasis
Examples:
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.~~
Become:
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.
Lists
Examples:
1. First ordered list item
2. Another item
* Unordered sub-list.
1. Actual numbers don't matter, just that it's a number
1. Ordered sub-list
4. And another item.
* Unordered list can use asterisks
- Or minuses
+ Or pluses
Images
Examples:
Here's our logo (hover to see the title text):
Inline-style:

Reference-style:
![alt text1][logo]
[logo]: img/markdown_logo.png
Become:
Here's our logo:
Inline-style:
Reference-style: