このページの2つのバージョン間の差分を表示します。
両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
wiki:syntax [2021/01/19 04:23] 非ログインユーザー 以前のリビジョンを復元 (2021/01/19 04:19) |
wiki:syntax [2021/01/20 09:43] (現在) hhuh 以前のリビジョンを復元 (2021/01/19 20:00) |
||
---|---|---|---|
行 1: | 行 1: | ||
- | ====== | + | ~~NOTOC~~ |
+ | ====== | ||
- | [[doku>DokuWiki]] supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing "Edit this page". If you want to try something, just use the [[playground: | + | <WRAP center round info 60%> |
+ | 当wikiでは現在dokuwiki記法に対応しています。(html、php埋め込み不可) | ||
+ | </WRAP> | ||
- | ===== Basic Text Formatting ===== | + | wrap pluginを導入しています。詳しくはhttps:// |
- | DokuWiki supports **bold**, | + | ページを新しく作成する場合は[[playground: |
+ | ページ右部分の鉛筆マークの所から編集可能です。\\ | ||
+ | 詳しくはhttps: | ||
+ | 基本的な記法です。\\ | ||
- | DokuWiki supports **bold**, //italic//, __underlined__ and '' | ||
- | Of course you can **__//'' | ||
- | You can use <sub>subscript</sub> and < | + | ---- |
+ | * 改行 | ||
+ | 空白行があると段落とみなされ改行します。\\ | ||
+ | また、その行の最後に\\を付けると改行します。 | ||
+ | <wrap em>普通に改行しただけでは改行されません!</wrap> | ||
- | You can use <sub>subscript</ | + | 例: |
+ | <code> | ||
+ | AAAAA\\ | ||
+ | BBBBB | ||
- | You can mark something as < | + | CCCCC |
+ | DDDDD | ||
+ | </code> | ||
+ | AAAAA\\ | ||
+ | BBBBB | ||
- | You can mark something as < | + | CCCCC |
+ | DDDDD | ||
- | **Paragraphs** are created from blank lines. If you want to **force a newline** without a paragraph, you can use two backslashes followed by a whitespace or the end of line. | + | ---- |
+ | | ||
+ | colorプラグインを導入しています。\\ | ||
+ | また、文字サイズについては当wiki独自の記法になっています。\\ | ||
+ | '' | ||
+ | 例: | ||
+ | < | ||
+ | <color # | ||
- | This is some text with some linebreaks\\ Note that the | + | <color green>text</ |
- | two backslashes are only recognized at the end of a line\\ | + | |
- | or followed by\\ a whitespace \\this happens without it. | + | |
- | This is some text with some linebreaks\\ Note that the | + | <color blue/ |
- | two backslashes are only recognized at the end of a line\\ | + | |
- | or followed by\\ a whitespace \\this happens without it. | + | |
- | You should use forced newlines only if really needed. | + | <wrap fontsize_30> |
- | ===== Links ===== | + | <wrap fontsize_20>< |
+ | </ | ||
+ | <color # | ||
- | DokuWiki supports multiple ways of creating links. | + | <color green> |
- | ==== External ==== | + | <color blue/ |
- | External links are recognized automagically: | + | <wrap fontsize_30> |
- | DokuWiki supports multiple ways of creating links. External links are recognized | + | <wrap fontsize_20>< |
- | automagically: | + | |
- | link text as well: [[http:// | + | |
- | addresses like this one: <andi@splitbrain.org> are recognized, too. | + | |
- | + | ||
- | ==== Internal ==== | + | |
- | + | ||
- | Internal links are created by using square brackets. You can either just give a [[pagename]] or use an additional [[pagename|link text]]. | + | |
- | + | ||
- | Internal links are created by using square brackets. You can either just give | + | |
- | a [[pagename]] or use an additional [[pagename|link text]]. | + | |
- | + | ||
- | [[doku> | + | |
- | + | ||
- | You can use [[some: | + | |
- | + | ||
- | You can use [[some: | + | |
- | + | ||
- | For details about namespaces see [[doku> | + | |
- | + | ||
- | Linking to a specific section is possible, too. Just add the section name behind a hash character as known from HTML. This links to [[syntax#internal|this Section]]. | + | |
- | + | ||
- | This links to [[syntax# | + | |
- | + | ||
- | Notes: | + | |
- | + | ||
- | * Links to [[syntax|existing pages]] are shown in a different style from [[nonexisting]] ones. | + | |
- | * DokuWiki does not use [[wp>CamelCase]] to automatically create links by default, but this behavior can be enabled in the [[doku> | + | |
- | * When a section' | + | |
- | + | ||
- | ==== Interwiki ==== | + | |
- | + | ||
- | DokuWiki supports [[doku> | + | |
- | + | ||
- | DokuWiki supports [[doku> | + | |
- | For example this is a link to Wikipedia' | + | |
- | + | ||
- | 1 | + | |
- | ==== Image Links ==== | + | |
- | + | ||
- | You can also use an image to link to another internal or external page by combining the syntax for links and [[# | + | |
- | + | ||
- | [[http:// | + | |
- | + | ||
- | [[http:// | + | |
- | + | ||
- | Please note: The image formatting is the only formatting syntax accepted in link names. | + | |
- | + | ||
- | The whole [[# | + | |
- | + | ||
- | ===== Footnotes ===== | + | |
- | + | ||
- | You can add footnotes ((This is a footnote)) by using double parentheses. | + | |
- | + | ||
- | You can add footnotes ((This is a footnote)) by using double parentheses. | + | |
- | + | ||
- | ===== Sectioning ===== | + | |
- | + | ||
- | You can use up to five different levels of headlines to structure your content. If you have more than three headlines, a table of contents is generated automatically -- this can be disabled by including the string ''< | + | |
- | + | ||
- | ==== Headline Level 3 ==== | + | |
- | === Headline Level 4 === | + | |
- | == Headline Level 5 == | + | |
- | + | ||
- | ==== Headline Level 3 ==== | + | |
- | === Headline Level 4 === | + | |
- | == Headline Level 5 == | + | |
- | + | ||
- | By using four or more dashes, you can make a horizontal line: | + | |
---- | ---- | ||
- | + | * 文字整形 | |
- | ===== Media Files ===== | + | 太字、斜体、下線、等幅、下付き、上付き、取り消し線が使用可能です。\\ |
- | + | (組み合わせも可能)\\ | |
- | You can include external and internal [[doku> | + | 例: |
- | + | ||
- | Real size: {{wiki: | + | |
- | + | ||
- | Resize to given width: | + | |
- | + | ||
- | Resize to given width and height((when the aspect ratio of the given width and height doesn' | + | |
- | + | ||
- | Resized external image: {{https:// | + | |
- | + | ||
- | Real size: {{wiki: | + | |
- | Resize to given width: | + | |
- | Resize to given width and height: {{wiki: | + | |
- | Resized external image: {{https:// | + | |
- | + | ||
- | + | ||
- | By using left or right whitespaces you can choose the alignment. | + | |
- | + | ||
- | {{ wiki: | + | |
- | + | ||
- | {{wiki: | + | |
- | + | ||
- | {{ wiki: | + | |
- | + | ||
- | {{ wiki: | + | |
- | {{wiki: | + | |
- | {{ wiki: | + | |
- | + | ||
- | Of course, you can add a title (displayed as a tooltip by most browsers), too. | + | |
- | + | ||
- | {{ wiki: | + | |
- | + | ||
- | {{ wiki: | + | |
- | + | ||
- | For linking an image to another page see [[#Image Links]] above. | + | |
- | + | ||
- | ==== Supported Media Formats ==== | + | |
- | + | ||
- | DokuWiki can embed the following media formats directly. | + | |
- | + | ||
- | | Image | '' | + | |
- | | Video | '' | + | |
- | | Audio | '' | + | |
- | | Flash | '' | + | |
- | + | ||
- | If you specify a filename that is not a supported media format, then it will be displayed as a link instead. | + | |
- | + | ||
- | By adding ''? | + | |
- | + | ||
- | {{wiki: | + | |
- | + | ||
- | {{wiki: | + | |
- | + | ||
- | ==== Fallback Formats ==== | + | |
- | + | ||
- | Unfortunately not all browsers understand all video and audio formats. To mitigate the problem, you can upload your file in different formats for maximum browser compatibility. | + | |
- | + | ||
- | For example consider this embedded mp4 video: | + | |
- | + | ||
- | {{video.mp4|A funny video}} | + | |
- | + | ||
- | When you upload a '' | + | |
- | + | ||
- | Additionally DokuWiki supports a " | + | |
- | + | ||
- | ===== Lists ===== | + | |
- | + | ||
- | Dokuwiki supports ordered and unordered lists. To create a list item, indent your text by two spaces and use a '' | + | |
- | + | ||
- | * This is a list | + | |
- | * The second item | + | |
- | * You may have different levels | + | |
- | * Another item | + | |
- | + | ||
- | - The same list but ordered | + | |
- | - Another item | + | |
- | - Just use indention for deeper levels | + | |
- | - That's it | + | |
< | < | ||
- | | + | **太字**、// |
- | | + | |
- | | + | |
- | | + | |
- | + | ||
- | - The same list but ordered | + | |
- | - Another item | + | |
- | - Just use indention for deeper levels | + | |
- | - That's it | + | |
</ | </ | ||
+ | **太字**、// | ||
- | Also take a look at the [[doku>faq:lists|FAQ on list items]]. | + | ---- |
+ | * リンク | ||
+ | 外部リンクはURLを直接貼ると自動的に認識されます。\\ | ||
+ | 2連角カッコを使います。\\ | ||
+ | 例: | ||
+ | <code> | ||
+ | 自動認識:https://google.com | ||
- | ===== Text Conversions ===== | + | 表題指定:[[https:// |
- | DokuWiki can convert certain pre-defined characters or strings into images or other text or HTML. | + | 内部リンク:[[wiki: |
- | The text to image conversion is mainly done for smileys. And the text to HTML conversion is used for typography replacements, | + | 内部リンクの表題指定:[[wiki: |
- | ==== Text to Image Conversions ==== | + | 画像でリンク(サイズ調整しています):[[https:// |
+ | </ | ||
+ | 自動認識:https:// | ||
- | DokuWiki converts commonly used [[wp> | + | 表題指定:[[https:// |
- | * 8-) %% 8-) %% | + | 内部リンク:[[wiki:news]] |
- | * 8-O %% 8-O %% | + | |
- | * :-( %% :-( %% | + | |
- | * :-) %% :-) %% | + | |
- | * =) %% =) %% | + | |
- | * :-/ %% :-/ %% | + | |
- | * :-\ %% :-\ %% | + | |
- | * :-? %% :-? %% | + | |
- | * :-D %% :-D %% | + | |
- | * :-P %% :-P %% | + | |
- | * :-O %% :-O %% | + | |
- | * :-X %% :-X %% | + | |
- | * :-| %% :-| %% | + | |
- | * ;-) %% ;-) %% | + | |
- | * ^_^ %% ^_^ %% | + | |
- | * :?: %% :?: %% | + | |
- | * :!: %% :!: %% | + | |
- | * LOL %% LOL %% | + | |
- | * FIXME %% FIXME %% | + | |
- | * DELETEME %% DELETEME %% | + | |
- | ==== Text to HTML Conversions ==== | + | 内部リンクの表題指定:[[wiki: |
- | Typography: | + | 画像でリンク(サイズ調整しています):[[https:// |
- | + | ||
- | -> <- <-> => <= <=> >> << -- --- 640x480 (c) (tm) (r) | + | |
- | "He thought ' | + | |
+ | ---- | ||
+ | * 見出し | ||
+ | 編集画面上部のボタンもしくは直接入力で作ることができます。\\ | ||
+ | 文書中に ''< | ||
+ | 例: | ||
< | < | ||
- | -> <- < | + | ====== 第1見出し ======= |
- | "He thought ' | + | ===== 第2見出し ===== |
+ | ==== 第3見出し ==== | ||
</ | </ | ||
+ | ====== 第1見出し ======= | ||
+ | ===== 第2見出し ===== | ||
+ | ==== 第3見出し ==== | ||
- | The same can be done to produce any kind of HTML, it just needs to be added to the [[doku>entities|pattern file]]. | + | ---- |
+ | * リスト | ||
+ | 編集画面上部のボタンもしくは直接入力で作ることができます。\\ | ||
+ | 例: | ||
+ | <code> | ||
+ | - 記号付きリスト | ||
+ | - 記号付きリスト | ||
- | There are three exceptions which do not come from that pattern file: multiplication entity (640x480), ' | + | * 記号なしリスト |
+ | * 記号なしリスト | ||
+ | </code> | ||
+ | - 記号付きリスト | ||
+ | - 記号付きリスト | ||
- | ===== Quoting ===== | + | * 記号なしリスト |
- | + | * 記号なしリスト | |
- | Some times you want to mark some text to show it's a reply or comment. You can use the following syntax: | + | |
+ | ---- | ||
+ | * 画像 | ||
+ | 編集画面上部のボタンもしくは直接入力で貼ることができます。\\ | ||
+ | 例: | ||
< | < | ||
- | I think we should do it | + | (wiki内の画像){{wiki: |
- | > No we shouldn' | + | (幅、高さを変更){{wiki: |
- | >> Well, I say we should | + | (外部イメージ){{https:// |
- | + | ||
- | > Really? | + | |
- | + | ||
- | >> Yes! | + | |
- | + | ||
- | >>> | + | |
</ | </ | ||
+ | (wiki内の画像){{wiki: | ||
- | I think we should do it | + | (幅、高さを変更){{wiki: |
- | > No we shouldn' | + | (外部イメージ){{https://www.vipstarcoin.jp/img/header.jpg? |
- | + | ||
- | >> Well, I say we should | + | |
- | + | ||
- | > Really? | + | |
- | + | ||
- | >> Yes! | + | |
- | + | ||
- | >>> | + | |
- | + | ||
- | ===== Tables ===== | + | |
- | + | ||
- | DokuWiki supports a simple syntax to create tables. | + | |
- | + | ||
- | ^ Heading 1 ^ Heading 2 ^ Heading 3 ^ | + | |
- | | Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 | | + | |
- | | Row 2 Col 1 | some colspan (note the double pipe) || | + | |
- | | Row 3 Col 1 | Row 3 Col 2 | Row 3 Col 3 | | + | |
- | + | ||
- | Table rows have to start and end with a '' | + | |
- | + | ||
- | ^ Heading 1 ^ Heading 2 ^ Heading 3 ^ | + | |
- | | Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 | | + | |
- | | Row 2 Col 1 | some colspan (note the double pipe) || | + | |
- | | Row 3 Col 1 | Row 3 Col 2 | Row 3 Col 3 | | + | |
- | + | ||
- | To connect cells horizontally, | + | |
- | + | ||
- | Vertical tableheaders are possible, too. | + | |
- | + | ||
- | | ^ Heading 1 ^ Heading 2 ^ | + | |
- | ^ Heading 3 | Row 1 Col 2 | Row 1 Col 3 | | + | |
- | ^ Heading 4 | no colspan this time | | | + | |
- | ^ Heading 5 | Row 2 Col 2 | Row 2 Col 3 | | + | |
- | + | ||
- | As you can see, it's the cell separator before a cell which decides about the formatting: | + | |
- | + | ||
- | | ^ Heading 1 ^ Heading 2 ^ | + | |
- | ^ Heading 3 | Row 1 Col 2 | Row 1 Col 3 | | + | |
- | ^ Heading 4 | no colspan this time | | | + | |
- | ^ Heading 5 | Row 2 Col 2 | Row 2 Col 3 | | + | |
- | + | ||
- | You can have rowspans (vertically connected cells) by adding '' | + | |
- | + | ||
- | ^ Heading 1 ^ Heading 2 ^ Heading 3 ^ | + | |
- | | Row 1 Col 1 | this cell spans vertically | Row 1 Col 3 | | + | |
- | | Row 2 Col 1 | ::: | Row 2 Col 3 | | + | |
- | | Row 3 Col 1 | ::: | Row 2 Col 3 | | + | |
- | + | ||
- | Apart from the rowspan syntax those cells should not contain anything else. | + | |
- | + | ||
- | ^ Heading 1 ^ Heading 2 ^ Heading 3 ^ | + | |
- | | Row 1 Col 1 | this cell spans vertically | Row 1 Col 3 | | + | |
- | | Row 2 Col 1 | ::: | Row 2 Col 3 | | + | |
- | | Row 3 Col 1 | ::: | Row 2 Col 3 | | + | |
- | + | ||
- | You can align the table contents, too. Just add at least two whitespaces at the opposite end of your text: Add two spaces on the left to align right, two spaces on the right to align left and two spaces at least at both ends for centered text. | + | |
- | + | ||
- | ^ Table with alignment | + | |
- | | | + | |
- | |left | | + | |
- | | xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx | | + | |
- | + | ||
- | This is how it looks in the source: | + | |
- | + | ||
- | ^ Table with alignment | + | |
- | | | + | |
- | |left | | + | |
- | | xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx | | + | |
- | + | ||
- | Note: Vertical alignment is not supported. | + | |
- | + | ||
- | ===== No Formatting ===== | + | |
- | + | ||
- | If you need to display text exactly like it is typed (without any formatting), | + | |
- | + | ||
- | < | + | |
- | This is some text which contains addresses like this: http://www.splitbrain.org and **formatting**, | + | |
- | </nowiki> | + | |
- | The same is true for %%//__this__ text// with a smiley ;-)%%. | + | |
- | + | ||
- | < | + | |
- | This is some text which contains addresses like this: http:// | + | |
- | </ | + | |
- | The same is true for %%// | + | |
- | + | ||
- | ===== Code Blocks ===== | + | |
- | + | ||
- | You can include code blocks into your documents by either indenting them by at least two spaces (like used for the previous examples) or by using the tags '' | + | |
- | + | ||
- | This is text is indented by two spaces. | + | |
+ | ---- | ||
+ | * 水平線 | ||
+ | 編集画面上部のボタンもしくは直接入力で使うことができます。\\ | ||
+ | 例: | ||
< | < | ||
- | This is preformatted code all spaces are preserved: like <-this | + | (これです↓) |
+ | ---- | ||
+ | (これです↑) | ||
</ | </ | ||
+ | (これです↓) | ||
+ | ---- | ||
+ | (これです↑) | ||
+ | ---- | ||
+ | * コード | ||
+ | 2つ以上の半角スペースでインデントするか、'' | ||
+ | 例:(fileはcodeでもよい) | ||
+ | < | ||
< | < | ||
- | This is pretty much the same, but you could use it to show that you quoted a file. | + | AAA |
</ | </ | ||
- | Those blocks were created by this source: | + | AAAAAAAA |
- | This is text is indented by two spaces. | + | < |
- | + | .example { | |
- | < | + | font-size: 10px; |
- | This is preformatted code all spaces are preserved: like <-this | + | |
- | </ | + | |
- | + | ||
- | | + | |
- | This is pretty much the same, but you could use it to show that you quoted a file. | + | |
- | </ | + | |
- | + | ||
- | ==== Syntax Highlighting ==== | + | |
- | + | ||
- | [[wiki:DokuWiki]] can highlight sourcecode, which makes it easier to read. It uses the [[http:// | + | |
- | + | ||
- | <code java> | + | |
- | /** | + | |
- | * The HelloWorldApp class implements an application that | + | |
- | * simply displays "Hello World!" | + | |
- | */ | + | |
- | class HelloWorldApp { | + | |
- | public static void main(String[] args) { | + | |
- | System.out.println(" | + | |
- | } | + | |
} | } | ||
- | </ | ||
- | |||
- | The following language strings are currently recognized: //4cs 6502acme 6502kickass 6502tasm 68000devpac abap actionscript3 actionscript ada aimms algol68 apache applescript apt_sources arm asm asp asymptote autoconf autohotkey autoit avisynth awk bascomavr bash basic4gl batch bf biblatex bibtex blitzbasic bnf boo caddcl cadlisp ceylon cfdg cfm chaiscript chapel cil c_loadrunner clojure c_mac cmake cobol coffeescript c cpp cpp-qt cpp-winapi csharp css cuesheet c_winapi dart dcl dcpu16 dcs delphi diff div dos dot d ecmascript eiffel email epc e erlang euphoria ezt f1 falcon fo fortran freebasic freeswitch fsharp gambas gdb genero genie gettext glsl gml gnuplot go groovy gwbasic haskell haxe hicest hq9plus html html4strict html5 icon idl ini inno intercal io ispfpanel java5 java javascript jcl j jquery julia kixtart klonec klonecpp kotlin latex lb ldif lisp llvm locobasic logtalk lolcode lotusformulas lotusscript lscript lsl2 lua m68k magiksf make mapbasic mathematica matlab mercury metapost mirc mk-61 mmix modula2 modula3 mpasm mxml mysql nagios netrexx newlisp nginx nimrod nsis oberon2 objc objeck ocaml-brief ocaml octave oobas oorexx oracle11 oracle8 oxygene oz parasail parigp pascal pcre perl6 perl per pf phix php-brief php pic16 pike pixelbender pli plsql postgresql postscript povray powerbuilder powershell proftpd progress prolog properties providex purebasic pycon pys60 python qbasic qml q racket rails rbs rebol reg rexx robots roff rpmspec rsplus ruby rust sas sass scala scheme scilab scl sdlbasic smalltalk smarty spark sparql sql sshconfig standardml stonescript swift systemverilog tclegg tcl teraterm texgraph text thinbasic tsql twig typoscript unicon upc urbi uscript vala vbnet vb vbscript vedit verilog vhdl vim visualfoxpro visualprolog whitespace whois winbatch wolfram xbasic xml xojo xorg_conf xpp yaml z80 zxbasic// | ||
- | |||
- | There are additional [[doku> | ||
- | |||
- | ==== Downloadable Code Blocks ==== | ||
- | |||
- | When you use the '' | ||
- | |||
- | < | ||
- | <file php myexample.php> | ||
- | <?php echo "hello world!"; | ||
</ | </ | ||
</ | </ | ||
- | + | ↓ここから結果 | |
- | < | + | < |
- | <?php echo "hello world!"; | + | AAA |
</ | </ | ||
- | If you don't want any highlighting but want a downloadable file, specify a dash ('' | + | |
- | + | ||
- | + | ||
- | ===== Embedding HTML and PHP ===== | + | |
- | + | ||
- | You can embed raw HTML or PHP code into your documents by using the '' | + | |
- | + | ||
- | HTML example: | + | |
- | + | ||
- | < | + | |
- | < | + | |
- | This is some <span style=" | + | |
- | </ | + | |
- | < | + | |
- | <p style=" | + | |
- | </ | + | |
- | </ | + | |
- | + | ||
- | < | + | |
- | This is some <span style=" | + | |
- | </ | + | |
- | < | + | |
- | <p style=" | + | |
- | </ | + | |
- | + | ||
- | PHP example: | + | |
- | + | ||
- | < | + | |
- | < | + | |
- | echo 'The PHP version: '; | + | |
- | echo phpversion(); | + | |
- | echo ' (generated inline HTML)'; | + | |
- | </ | + | |
- | < | + | |
- | echo '< | + | |
- | echo '< | + | |
- | echo '</ | + | |
- | </ | + | |
- | </ | + | |
- | + | ||
- | < | + | |
- | echo 'The PHP version: '; | + | |
- | echo phpversion(); | + | |
- | echo ' (inline HTML)'; | + | |
- | </ | + | |
- | < | + | |
- | echo '< | + | |
- | echo '< | + | |
- | echo '</ | + | |
- | </ | + | |
- | + | ||
- | **Please Note**: HTML and PHP embedding is disabled by default in the configuration. If disabled, the code is displayed instead of executed. | + | |
- | + | ||
- | ===== RSS/ATOM Feed Aggregation ===== | + | |
- | [[DokuWiki]] can integrate data from external XML feeds. For parsing the XML feeds, [[http:// | + | |
- | + | ||
- | ^ Parameter | + | |
- | | any number | will be used as maximum number items to show, defaults to 8 | | + | |
- | | reverse | + | |
- | | author | + | |
- | | date | show item dates | | + | |
- | | description| show the item description. If [[doku> | + | |
- | | nosort | + | |
- | | //n//[dhm] | refresh period, where d=days, h=hours, m=minutes. (e.g. 12h = 12 hours). | | + | |
- | + | ||
- | The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. [[wiki: | + | |
- | + | ||
- | By default the feed will be sorted by date, newest items first. You can sort it by oldest first using the '' | + | |
- | + | ||
- | **Example: | + | |
- | + | ||
- | {{rss> | + | |
- | + | ||
- | {{rss> | + | |
- | + | ||
- | + | ||
- | ===== Control Macros ===== | + | |
- | + | ||
- | Some syntax influences how DokuWiki renders a page without creating any output it self. The following control macros are availble: | + | |
- | + | ||
- | ^ Macro ^ Description | | + | |
- | | %%~~NOTOC~~%% | + | |
- | | %%~~NOCACHE~~%% | DokuWiki caches all output by default. Sometimes this might not be wanted (eg. when the %%< | + | |
- | + | ||
- | ===== Syntax Plugins ===== | + | |
- | + | ||
- | DokuWiki' | + | |
- | + | ||
- | ~~INFO: | + | |
+ | <file css> | ||
+ | .example { | ||
+ | | ||
+ | } | ||
+ | </ |