markdown 연습하기

markdown 태그 연습하기

Example post를 따라 markdown Tag를 다양하게 적용해봤습니다.

Headers

# H1
## H2
### H3
#### h4
##### H5
###### H6

H1

H2

H3

h4

H5
H6

Text formatting

- **Bold**
- _Italics_
- ~~Strickethrough~~
- <ins>Underline</ins>
- <sup>Superscript</sup>
- <sub>Subscript</sub>
- Abbreviation : <abbr title="HyperText Markup Language">HTML</abbr>
- Citation: <cite>&mdash; Chester How</cite>

List

하위항목 작성은 Tab을 이용!!

1. ordered item1
    * test1
        * test1-1
            * test1-1-1
        * test1-1-2
    * test1-2
    * test1-3
        1. test1-3-1
            1. test1-3-1-1
                1. test1-3-1-1-1
2. ordered item2
3. ordered item3

* unordered item1
* unordered item2
* unordered item3
  1. ordered item1
    • test1
    • test1-1
      • test1-1-1
      • test1-1-2
    • test1-2
    • test1-3
      1. test1-3-1
        1. test1-3-1-1
          1. test1-3-1-1-1
  2. ordered item2
  3. ordered item3

Links

Check out tale on Github.

Images

Placeholder image Image with caption This is an image with a caption

Code and Syntax Highlighting

Use back-ticks for inline code. Multi-line code snippets are supported too through Pygments.

1
2
3
// Sample javascript code
var s = "JavaScript syntax highlighting";
alert(s);

The end