2019년 2월 1일 금요일

[Markdown] Markdown Syntax


Reference : https://www.markdownguide.org/basic-syntax/

Headings

# heading 1
## heading 2
### heading 3
#### heading 4
##### heading 5
###### heading 6

Heading level 1
===============

Heading level 2
---------------

Emphasis

*Emphasis* _Emphasis_ (Italic)
**String** __String__ (Bold)
*__BoldItalic__*
**_BoldItalic_**

List

1. 1) Numbered List
* + - Bullet List

Blockquotes

> Block Quote Level 1
>> Block Quote Level 2

Code

`Code Span`
```
Code Block
```

Table

Left  | Center | Right
:---  | :---:  | ---:
d1 | d2 | d3

Line

--- ___ Horizontal Rule

Link

[Link](http://url.com "Title")

[Reference Link][ID]
[ID]: http://url.com "Reference Definition"

![Image][./image.jpg "Title"]

Paragraphs

To create paragraphs, use a blank line to separate one or more lines of text. You should not indent paragraphs with spaces or tabs.

Line Breaks

To create a line break, end a line with two or more spaces, and then type return.

Escape

CharacterName
\backslash
`tick mark
*asterisk
_underscore
{}curly braces
[]brackets
()parentheses
#pound sign
+plus sign
-minus sign (hyphen)
.dot
!exclamation mark

댓글 없음:

댓글 쓰기