마크다운 (Markdown)
구문강조 및 링크를 그냥 "써내려가는 듯" 만들수 있는 규약으로 쓰기 쉽고 읽기 쉬운 원본문서를 만들 수 있다. 1)
markdownextra 혹은 markdowku 플러긴을 통해 도쿠위키에서 사용할 수 있다.
- 마크다운익스트라는 문서이름 끝에 .md를 붙이거나 일반 위키 페이지에 <markdown>……</markdown>을 사용하면 된다.
블로그 서비스 중에서는 [](tumblr)에서 지원한다.
본 위키에서는 [마크다우쿠](https://www.dokuwiki.org/plugin:markdowku)를 사용한다. 3)

[기발한 링크 문법](http://my.offree.net/post/122160235)이 제일 마음에 든다.
- 마크다운(Markdown) 문법 목록 쉬운 설명
- 워드프레스를 위한 Markdown 플러그인 비교 문법의 동적인 변환이 일어나는 플러긴이 더 알맞다.
문법
강조
*italic* **bold** _italic_ __bold__
링크
Inline:
An [example](http://url.com/ "Title")
Reference-style labels (titles are optional): An [example][id]. Then, anywhere else in the doc, define the link:
[id]: http://example.com/ "Title"
사진
Inline (titles are optional):

Reference-style:
![alt text][id]
[id]: /url/to/img.jpg "Title"
제목
큰제목 1 ==================== 작은제목 2 --------
atx-style (closing #'s are optional):
# Header 1 # ## Header 2 ## ###### Header 6
목록
숫자 목록
1. Foo 2. Bar
점목록
* A list item. With multiple paragraphs. * Bar
혼합사용 가능
* Abacus * answer * Bubbles 1. bunk 2. bupkis * BELITTLER 3. burper * Cunning
인용
> Email-style angle brackets > are used for blockquotes. > > And, they can be nested. > #### Headers in blockquotes > > * You can quote a list. > * Etc.
Code Spans
<code>
spans are delimited
by backticks.
You can include literal backticks like `` `this` ``.
코드블럭
Indent every line of a code block by at least 4 spaces or 1 tab. This is a normal paragraph.
This is a preformatted code block.
가로줄
Three or more dashes or asterisks:
--- * * * - - - -
강제 줄바꿈
End a line with two or more spaces:
Roses are red, Violets are blue.
표
|제목 셀1|제목 셀2|제목 셀3|제목 셀4| |---|---|---|---| |내용 1|내용 2|내용 3|내용 4| |내용 5|내용 6|내용 7|내용 8| |내용 9|내용 10|내용 11|내용 12|
첫줄이 제목행, 칸 구분은 |
로 함.
두번째 줄을 이용해서 칸의 좌우 정렬을 한다.
|기본값|왼쪽 정렬|가운데 정렬|오른쪽 정렬| |---|:---|:---:|---:| |내용 1|내용 2|내용 3|내용 4| |내용 5|내용 6|내용 7|내용 8| |내용 9|내용 10|내용 11|내용 12|
:
의 위치대로 정렬됨.
관련자료
- php-markdown php 마크다운 해석기
- marked 자바스크립트 기반 마크다운 해석기
- js-markdown-extra 자바스크립트기반 마크다운 해석기
- https://markdown-it.github.io/ node.js 기반