• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..Today-

.hg_archival.txtH A D07-Oct-2015172 76

License.textH A D07-Oct-20151.7 KiB4234

README.mdH A D07-Oct-2015977 4532

action.phpH A D07-Oct-20151.1 KiB3520

plugin.info.txtH A D07-Oct-2015187 77

syntax.phpH A D07-Oct-20156.3 KiB188104

README.md

1# PHP RST plugin for DokuWiki
2    ---- plugin ----
3    description: Parses RestructuredText files and blocks.
4    author     : Chris Green
5    email      : chris@isbd.co.uk
6    type       : syntax
7    lastupdate : 2015-10-07
8    compatible : “Detritus” and newer
9    depends    :
10    conflicts  :
11    similar    : markdownExtra
12    tags       : formatting, markup_language
13    downloadurl:
14    ----
15
16##Download and Installation
17
18Download and install the plugin using the Plugin Manager using the following URL. Refer to [[:Plugins]] on how to install plugins manually.
19
20
21
22##Usage
23
24If the page name ends with ''.rst'' suffix, it gets automatically parsed as RST . To use that markup in other pages, the content must be embedded in a rst block. For example:
25
26    <rst>
27    Header 1
28    ========
29
30    Paragraph
31
32    Header 2
33    --------
34
35    - A
36    - simple
37    - list
38
39    1. And
40    2. numbered
41    3. list
42
43    Quite intuitive? *emphasis*, **strong**, etc.
44    </rst>
45