Home
last modified time | relevance | path

Searched refs:getPluginMode (Results 1 – 2 of 2) sorted by relevance

/plugin/mdpage/
H A Dsyntax.php36 public function getPluginMode() { function in syntax_plugin_mdpage
42 $this->Lexer->addEntryPattern('\\A(?!.*</script>).', $mode, $this->getPluginMode());
43 $this->Lexer->addEntryPattern('<!DOCTYPE markdown>', $mode, $this->getPluginMode());
44 $this->Lexer->addEntryPattern('</script>', $mode, $this->getPluginMode());
46 … $this->Lexer->addEntryPattern('<markdown>(?=.*</markdown>)', $mode, $this->getPluginMode());
54 $this->Lexer->addExitPattern('\\z', $this->getPluginMode());
55 $this->Lexer->addExitPattern('<script type="text/x-dokuwiki">', $this->getPluginMode());
/plugin/webcode/syntax/
H A Dbasis.php159 … $this->Lexer->addEntryPattern('<webcode.*?>(?=.*?</webcode>)', $mode, $this->getPluginMode());
172 $this->Lexer->addPattern('<code.*?</code>', $this->getPluginMode());
177 $this->Lexer->addExitPattern('</webcode>', $this->getPluginMode());
625 public function getPluginMode() function in syntax_plugin_webcode_basis