1<?php 2// must be run within Dokuwiki 3if(!defined('DOKU_INC')) die(); 4 5require_once(DOKU_PLUGIN.'formatplus2/formatting.php'); 6 7class syntax_plugin_formatplus2_insertplus extends FormattingPlus_Syntax_Plugin { 8 9 function _getName() { 10 return 'Insert+'; 11 } 12 function _getDesc() { 13 return 'Wraps text in <INS> tags. Syntax: /+insert+/'; 14 } 15 function _getConfig() { 16 return 'ins_del'; 17 } 18 19 function _getFormatting() { 20 return array('open'=>'/\x2B', 'close'=>'\x2B/', 'tag'=>'ins', 'attrs'=>'class="simple"'); 21 } 22 23 function getSort() { 24 return 83; 25 } 26 27} 28