12345678910111213141516171819202122 |
- <?php
- if(!defined('DOKU_INC')) die();
- require_once(dirname(__FILE__).'/icon.php');
- class syntax_plugin_icons_ra extends syntax_plugin_icons_icon {
- const IS_ICON = false;
- const IS_FONT_ICON = true;
- protected $pattern = '{{ra>.+?}}';
- }
|