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:
![alt text](img/markdown_logo.png)

Reference-style:
![alt text1][logo]

[logo]: img/markdown_logo.png

Become:

Here's our logo:

Inline-style:

alt text

Reference-style:

alt text