* */ require_once(dirname(__FILE__).'/base.php'); class syntax_plugin_typography_bgcolor extends syntax_plugin_typography_base { /** * Connect pattern to lexer */ public function preConnect() { // drop 'syntax_' from class name $this->mode = substr(get_class($this), 7); // syntax pattern $this->pattern[1] = '(?=.*?)'; $this->pattern[4] = ''; } }