Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | 30-Apr-2025 | - | ||||
.hg_archival.txt | H A D | 07-Oct-2015 | 172 | 7 | 6 | |
License.text | H A D | 07-Oct-2015 | 1.7 KiB | 42 | 34 | |
README.md | H A D | 07-Oct-2015 | 977 | 45 | 32 | |
action.php | H A D | 07-Oct-2015 | 1.1 KiB | 35 | 20 | |
plugin.info.txt | H A D | 07-Oct-2015 | 187 | 7 | 7 | |
syntax.php | H A D | 07-Oct-2015 | 6.3 KiB | 188 | 104 |
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