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