123456789101112131415161718 |
- <?php
- /**
- * Plugin Icons: Font Awesome helper
- *
- * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
- * @author Giuseppe Di Terlizzi <giuseppe.diterlizzi>
- * @copyright (C) 2015, Giuseppe Di Terlizzi
- */
-
- // must be run within Dokuwiki
- if(!defined('DOKU_INC')) die();
- require_once(dirname(__FILE__).'/icon.php');
- class syntax_plugin_icons_fa extends syntax_plugin_icons_icon {
- protected $pattern = '{{fa>.+?}}';
- const IS_ICON = false;
- }
|