Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | 23-Apr-2025 | - | ||||
LICENSE | H A D | 10-Jul-2023 | 1.1 KiB | 22 | 17 | |
README.md | H A D | 10-Jul-2023 | 941 | 26 | 18 | |
plugin.info.txt | H A D | 10-Jul-2023 | 213 | 7 | 7 | |
style.css | H A D | 10-Jul-2023 | 596 | 36 | 27 | |
syntax.php | H A D | 10-Jul-2023 | 3.3 KiB | 115 | 83 |
README.md
1# Table Vertical Align 2Simple plugin to configure vertical-align in tables 3 4DokuWiki homepage at https://www.dokuwiki.org/plugin:vertical 5 6Cross-plugin compatibility is outside the scope of this repo. 7 8If reporting bugs, please provide a valid reproduction scenario for any non-trivial case. 9 10## Usage 11After installing the plugin you should make sure that your DokuWiki cache is updated. This can easily be done by changing any parameter value in settings (or by doing a `touch conf/local.php`). 12 13You need to set `<vertical head=align body=align>` and `</vertical>` tags around your table, where `align` can be: 14 15* top - sets vertical-align to `top` 16* center - sets vertical-align to `middle` 17* bottom - sets vertical-align to `bottom` 18 19``` 20<vertical head=bottom body=center> 21^ **Number** ^ **Some column** ^ **Date** ^ 22| 1 | one | 2023-04-01 | 23| 2 | two | 2023-04-02 | 24</vertical> 25``` 26