allowedModes = []; } /** @inheritdoc */ public function getSort() { return 5; } /** @inheritdoc */ public function connectTo($mode) { $this->Lexer->addSpecialPattern( '\\\\' . Escape::PUNCTUATION_CHAR_CLASS, $mode, 'gfm_escape' ); } /** @inheritdoc */ public function handle($match, $state, $pos, Handler $handler) { $handler->addCall('cdata', [substr($match, 1)], $pos); return true; } }