You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
457 B

  1. <?php
  2. /**
  3. * Alternate div syntax component for the wrap plugin
  4. *
  5. * Defines <WRAP> ... </WRAP> syntax
  6. *
  7. * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
  8. * @author Anika Henke <anika@selfthinker.org>
  9. */
  10. class syntax_plugin_wrap_divwrap extends syntax_plugin_wrap_div {
  11. protected $special_pattern = '<WRAP\b[^>\r\n]*?/>';
  12. protected $entry_pattern = '<WRAP\b.*?>(?=.*?</WRAP>)';
  13. protected $exit_pattern = '</WRAP>';
  14. }