Written by
Paycis
on
on
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>— Chester How</cite>
- Bold
- Italics
Strikethrough- Underline
- Superscript
- Subscript
- Abbreviation: HTML
- Citation: — Chester How
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
- ordered item1
- test1
- test1-1
- test1-1-1
- test1-1-2
- test1-2
- test1-3
- test1-3-1
- test1-3-1-1
- test1-3-1-1-1
- test1-3-1-1
- test1-3-1
- ordered item2
- ordered item3
- unordered item1
- unordered item2
- unordered item3
Links
Check out tale on Github.
Images
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