12345678910111213141516171819202122 |
- <?php
- /**
- * Plugin Icons: Font-Awesome helper
- *
- * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
- * @author Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
- * @copyright (C) 2015-2018, 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 {
- const IS_ICON = false;
- const IS_FONT_ICON = true;
- protected $pattern = '{{fa>.+?}}';
- }
|