차이
문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판이전 판다음 판 | 이전 판 | ||
tech:creole [2015/05/26 19:30] – 링크가 옮기기 작업 때문에 적응했습니다 V_L | tech:creole [2017/12/06 05:46] (현재) – V_L | ||
---|---|---|---|
줄 12: | 줄 12: | ||
여러 위키의 제작자들이 [[http:// | 여러 위키의 제작자들이 [[http:// | ||
- | {{ :wiki: | + | [[:망했어요|망했다고 본다.]] |
- | ====== Dokuwiki Creole Plugin ====== | ||
- | description: Creole is an initiative to bring a common basic set of wiki markup to different wiki engines. (previous author: Esther Brunner) | + | {{ :wiki:creole-1.0.png|}} |
- | author | + | |
- | email : dokuwiki@chimeric.de | + | |
- | type : syntax | + | |
- | lastupdate : 2008-02-12 | + | |
- | compatible : 2006-11-06 | + | |
- | depends | + | |
- | conflicts | + | |
- | similar | + | |
- | tags : Creole, wiki syntax | + | |
- | + | ||
- | ^ Download | [[http:// | + | |
====== WM creole====== | ====== WM creole====== | ||
wikinote http:// | wikinote http:// | ||
줄 46: | 줄 35: | ||
If you use this plugin to support the Creole syntax, you might want to list your wiki at http:// | If you use this plugin to support the Creole syntax, you might want to list your wiki at http:// | ||
- | ===== Components ===== | + | |
- | + | ||
- | ==== Listblock ==== | + | |
- | + | ||
- | Creole style ordered and unordered lists use a slightly different markup: | + | |
- | + | ||
- | Creole (and DokuWiki): | + | |
- | + | ||
- | < | + | |
- | * Item 1 ( * Item 1 ) | + | |
- | ** Item 1.1 | + | |
- | * Item 2 ( * Item 2 ) | + | |
- | </ | + | |
- | + | ||
- | Output: | + | |
- | + | ||
- | * Item 1 | + | |
- | ** Item 1.1 | + | |
- | * Item 2 | + | |
- | + | ||
- | Creole (and DokuWiki): | + | |
- | + | ||
- | < | + | |
- | # Item 1 ( - Item 1 ) | + | |
- | ## Item 1.1 | + | |
- | # Item 2 ( - Item 2 ) | + | |
- | </ | + | |
- | + | ||
- | Output: | + | |
- | + | ||
- | # Item 1 | + | |
- | ## Item 1.1 | + | |
- | # Item 2 | + | |
- | + | ||
- | + | ||
- | ==== Headings ==== | + | |
- | + | ||
- | In Creole, the header ordering is just the other way round. If you have set the markup precedence option to DokuWiki (default), this plugin will assume headers are DokuWiki style if there are equal signs after the title. In Creole, closing (right-side) equal signs are optional. So if omit them, headers are interpreted as Creole. | + | |
- | + | ||
- | Creole (and DokuWiki): | + | |
- | + | ||
- | < | + | |
- | = Level 1 (=== Level 1 ===) | + | |
- | ===== Level 2 (== Level 2 == )===== | + | |
- | ==== Level 3 (=== Level 3 === )==== | + | |
- | === Level 4 (==== Level 4 ==== ) | + | |
- | == Level 5 (===== Level 5 ===== ) | + | |
- | </ | + | |
- | ====== Level 1====== | + | |
- | ===== Level 2===== | + | |
- | ==== Level 3==== | + | |
- | === Level 4=== | + | |
- | == Level 5== | + | |
- | + | ||
- | + | ||
- | + | ||
- | ==== Linebreaks ==== | + | |
- | + | ||
- | DokuWiki does not care about (single) line breaks. Creole, however, does treat line breaks in the source as line breaks in the output. | + | |
- | + | ||
- | This component is mainly the same as Chris Smith' | + | |
- | + | ||
- | ==== Preformatted ==== | + | |
- | + | ||
- | Creole: | + | |
- | + | ||
- | < | + | |
- | {{{ | + | |
- | //This// does **not** get [[wiki: | + | |
- | }}} | + | |
- | + | ||
- | Some examples of markup are: {{{** < | + | |
- | </ | + | |
- | + | ||
- | Output: | + | |
- | + | ||
- | //This// does **not** get [[wiki: | + | |
- | + | ||
- | Some examples of markup are: '' | + | |
- | + | ||
- | === Tables === | + | |
- | + | ||
- | Creole (and DokuWiki): | + | |
- | + | ||
- | < | + | |
- | |Heading Col 1 |Heading Col 2 | | + | |
- | |Cell 1.1 |Cell 1.2 | | + | |
- | |Cell 2.1 |Cell 2.2 | | + | |
- | </ | + | |
- | + | ||
- | Output: | + | |
- | + | ||
- | |Heading Col 1 |Heading Col 2 | | + | |
- | |Cell 1.1 |Cell 1.2 | | + | |
- | |Cell 2.1 |Cell 2.2 | | + | |
- | + | ||
- | The difference to DokuWiki is that in Creole there' | + | |