fa.php 509 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Plugin Icons: Font-Awesome helper
  4. *
  5. * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
  6. * @author Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
  7. * @copyright (C) 2015-2018, Giuseppe Di Terlizzi
  8. */
  9. // must be run within Dokuwiki
  10. if(!defined('DOKU_INC')) die();
  11. require_once(dirname(__FILE__).'/icon.php');
  12. class syntax_plugin_icons_fa extends syntax_plugin_icons_icon {
  13. const IS_ICON = false;
  14. const IS_FONT_ICON = true;
  15. protected $pattern = '{{fa>.+?}}';
  16. }