IceWreck / Argon-Dokuwiki-Template

Dokuwiki Template based on the Argon Design System
Other
409 stars 36 forks source link

Add getLinkAttributes to PageTools #28

Closed SoarinFerret closed 4 years ago

SoarinFerret commented 4 years ago

This fixes #25

This add the getLinkAttributes() class to the PageMenu items <a> tags.

To use the plugin specifically mentioned in forementioned issue, it requires the class "plugin_move_page" in order to work. However, this template was not providing that. Here is the before and after:

Before

<a class="" href="/doku.php?id=start&amp;do=menuitem" title="Rename Page">Rename Page</a>

After

<a class="menuitem plugin_move_page " href="/doku.php?id=start&amp;do=menuitem" title="Rename Page">Rename Page</a>
IceWreck commented 4 years ago

Thanks again !