Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | Today | - | ||||
conf/ | H | 01-Jul-2023 | - | 17 | 4 | |
LICENSE | H A D | 30-Jun-2023 | 17.6 KiB | 339 | 281 | |
README.md | H A D | 30-Jun-2023 | 1.6 KiB | 28 | 22 | |
deleted.files | H A D | 30-Jun-2023 | 211 | 10 | 8 | |
odt.css | H A D | 30-Jun-2023 | 129 | 8 | 7 | |
plugin.info.txt | H A D | 30-Jun-2023 | 292 | 8 | 7 | |
print.css | H A D | 30-Jun-2023 | 549 | 38 | 32 | |
style.css | H A D | 30-Jun-2023 | 473 | 32 | 27 | |
syntax.php | H A D | 30-Jun-2023 | 27.9 KiB | 690 | 600 |
README.md
1dokuwiki-yalist-plugin 2====================== 3 4This plugin extends DokuWiki's list markup syntax to allow definition lists 5and list items with multiple paragraphs. The complete syntax is as follows: 6 7``` 8 - ordered list item [<ol><li>] <!-- as standard syntax --> 9 * unordered list item [<ul><li>] <!-- as standard syntax --> 10 ? definition list term [<dl><dt>] 11 : definition list definition [<dl><dd>] 12 13 -- ordered list item w/ multiple paragraphs 14 ** unordered list item w/ multiple paragraphs 15 :: definition list definition w/multiple paragraphs 16 .. new paragraph in --, **, or :: 17``` 18 19Lists can be nested within lists, just as in the standard DokuWiki syntax. 20 21---- 22[![CI](https://github.com/mprins/dokuwiki-yalist-plugin/actions/workflows/CI.yml/badge.svg)](https://github.com/mprins/dokuwiki-yalist-plugin/actions/workflows/CI.yml) 23[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/mprins/dokuwiki-yalist-plugin/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/mprins/dokuwiki-yalist-plugin/?branch=master) 24[![GitHub issues](https://img.shields.io/github/issues/mprins/dokuwiki-yalist-plugin.svg)](https://github.com/mprins/dokuwiki-yalist-plugin/issues) 25[![GitHub forks](https://img.shields.io/github/forks/mprins/dokuwiki-yalist-plugin.svg)](https://github.com/mprins/dokuwiki-yalist-plugin/network) 26[![GitHub stars](https://img.shields.io/github/stars/mprins/dokuwiki-yalist-plugin.svg)](https://github.com/mprins/dokuwiki-yalist-plugin/stargazers) 27[![GitHub license](https://img.shields.io/badge/license-GPLv2-blue.svg)](https://raw.githubusercontent.com/mprins/dokuwiki-yalist-plugin/master/LICENSE) 28