1<?php 2/** 3 * Shows Titles anchors links when hovering sections titles (like github) 4 * 5 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 6 * @author Dric <cedric@driczone.net> 7 * 8 * Nothing here, just a dummy class for admin info page 9 */ 10 11// must be run within Dokuwiki 12if (!defined('DOKU_INC')) die(); 13 14if (!defined('DOKU_LF')) define('DOKU_LF', "\n"); 15if (!defined('DOKU_TAB')) define('DOKU_TAB', "\t"); 16if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); 17 18class helper_plugin_titlesanchorlink extends DokuWiki_Plugin { 19 20} 21 22