| /dokuwiki/inc/Parsing/ParserMode/ |
| H A D | Quotes.php | 24 $this->Lexer->addSpecialPattern( 29 $this->Lexer->addSpecialPattern( 34 $this->Lexer->addSpecialPattern( 41 $this->Lexer->addSpecialPattern( 46 $this->Lexer->addSpecialPattern(
|
| H A D | Nocache.php | 18 $this->Lexer->addSpecialPattern('~~NOCACHE~~', $mode, 'nocache');
|
| H A D | Linebreak.php | 18 $this->Lexer->addSpecialPattern('\x5C{2}(?:[ \t]|(?=\n))', $mode, 'linebreak');
|
| H A D | Hr.php | 18 $this->Lexer->addSpecialPattern('\n[ \t]*-{4,}[ \t]*(?=\n)', $mode, 'hr');
|
| H A D | Notoc.php | 18 $this->Lexer->addSpecialPattern('~~NOTOC~~', $mode, 'notoc');
|
| H A D | Camelcaselink.php | 18 $this->Lexer->addSpecialPattern(
|
| H A D | Multiplyentity.php | 22 $this->Lexer->addSpecialPattern(
|
| H A D | Eol.php | 24 $this->Lexer->addSpecialPattern('(?:^[ \t]*)?\n', $mode, 'eol');
|
| H A D | Windowssharelink.php | 26 $this->Lexer->addSpecialPattern(
|
| H A D | Emaillink.php | 19 …$this->Lexer->addSpecialPattern('<' . MailUtils::PREG_PATTERN_VALID_EMAIL . '>', $mode, 'emaillink…
|
| H A D | Filelink.php | 33 $this->Lexer->addSpecialPattern(
|
| H A D | Header.php | 19 $this->Lexer->addSpecialPattern(
|
| H A D | Wordblock.php | 50 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'wordblock');
|
| H A D | Smiley.php | 46 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'smiley');
|
| H A D | Entity.php | 46 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'entity');
|
| H A D | Rss.php | 18 $this->Lexer->addSpecialPattern("\{\{rss>[^\}]+\}\}", $mode, 'rss');
|
| H A D | Acronym.php | 46 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'acronym');
|
| H A D | Externallink.php | 45 $this->Lexer->addSpecialPattern($pattern, $mode, 'externallink');
|
| H A D | Internallink.php | 20 $this->Lexer->addSpecialPattern("\[\[.*?\]\](?!\])", $mode, 'internallink');
|
| H A D | Media.php | 19 $this->Lexer->addSpecialPattern("\{\{(?:[^\}]|(?:\}[^\}]))+\}\}", $mode, 'media');
|
| /dokuwiki/_test/tests/Parsing/Lexer/ |
| H A D | LexerTest.php | 129 $lexer->addSpecialPattern("b+", "a", "b"); 183 $lexer->addSpecialPattern('b', 'caught', 'special'); 205 $lexer->addSpecialPattern('b', 'caught', 'special'); 227 $lexer->addSpecialPattern('b', 'caught', 'special'); 249 $lexer->addSpecialPattern('b', 'caught', 'special'); 271 $lexer->addSpecialPattern('b', 'caught', 'special'); 296 $lexer->addSpecialPattern($pattern, 'ignore', 'caught');
|
| /dokuwiki/inc/Parsing/Lexer/ |
| H A D | Lexer.php | 113 public function addSpecialPattern($pattern, $mode, $special) function in dokuwiki\\Parsing\\Lexer\\Lexer
|
| /dokuwiki/lib/plugins/info/ |
| H A D | syntax.php | 46 $this->Lexer->addSpecialPattern('~~INFO:\w+~~', $mode, 'plugin_info');
|