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.
 
 
 
 
 

20 lines
461 B

  1. <?php
  2. /**
  3. * Alternate span 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_spanwrap extends syntax_plugin_wrap_span {
  11. protected $special_pattern = '<wrap\b[^>\r\n]*?/>';
  12. protected $entry_pattern = '<wrap\b.*?>(?=.*?</wrap>)';
  13. protected $exit_pattern = '</wrap>';
  14. }