1This plugin will automatically add a DW Edit button to the page tools which appear at the right of the Dokuwiki editor in the standard Dokuwiki template.
2The icon is like the Edit button.  Clicking on the button will open the native Dokuwiki editor.  It opens to the entire page being edited, it does not support section editing.
3
4For users who are not using the Dokuwiki template, a link can be added anywhere on the template page  using the following syntax:
5    <?php tpl_toolsevent('dweditlink', array());?>
6If already in a php block, use:
7     tpl_toolsevent('dweditlink', array());
8
9 The appearance of the link can be styled in the style.css file, using span.dwedit, which is currently set to:
10      font-size:  10pt;  padding-left: 4px; padding-right: 4px;
11
12