[EN][TIPS] Basics About MarkDown
So, lets start.
What is MarkDown?
How to write MarkDown
How the code looks like
// Write list
- This is how we write lists
// Wrile link with text
[Qiita](http://qiita.com)
// Write checkbox
- [ ] Un-Checked Checkbox
- [x] Checked Checkbox
// Write table
// Aligning left/center/right is set with ":" in second line
|Left|Center|Right|Default|
|:---|:----:|:----|-------|
|1 | 2| 3|4 |
| 5| 6 |7 | 8|
How the above code looks like in actual page
//Write list
//Wrile link with text
Qiita
//Write checkbox
Un-Checked Checkbox
Checked Checkbox
//Write table
//Aligning left/center/right is set with ":"in second line
Left
센터
Right
Default
1
2
3
4
5
6
7
8
MarkDown Chart
About
How To Write In MarkDown
Detail/Tips
Headers
# Text
Size of Header will differ by number of "#"Paragraph
(Place a empty line in between 2 lines)
Sets paragraph for texts
New Lines
(Place 2 spaces at the end of line)
Sets new line
Escape Symbol
\
Escapes symbols to be used as MarkDown eg) \*Text\*
* Escaping "|"in tables does not work in table, it can be written with "|
"Quotation
> Text
Sets quotation Can write multiple quotation by adding ">"Italic
*Text*
Makes text italicBold
**Text**
Makes text bold슬래시
~~Text~~
Makes slash textCodes
``
Text
``Shows texts as codes Spaces and symbols will be shown as raw text
Codes
`
Text`
Shows texts as inline codes Used to show code within the line
링크
<URL>
Creates link like this ぃ tp // 이 m링크
[Text] (URL>
Creates link like this 링크이미지
![Alt Text] (ImagePath)
Shows image "Alt Text"is shown if failed to show imageHorizontal Line
---
Sets horizontal line목록
- Text
or * Text
or + Text
Show text as list Indents can be put with tabs
Numbered List
1. Text
Show text as numbered list Indents can be put with tabsCheckbox List
- [ ] Unchecked Checkbox
- [x] Checked Checkbox
Show checkbox list
표
|TopicA |TopicB | | --- |---- | | ContentA | ContentB |
Shows table Align of text can be arranged by placing ":"in second line Align left: ":---"Align Right: "---:"Align Center: ":---:"
Reference
이 문제에 관하여([EN][TIPS] Basics About MarkDown), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tc_minami/items/a46d3f515f2e5249ee89텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)