Home
last modified time | relevance | path

Searched refs:addSpecialPattern (Results 1 – 23 of 23) sorted by relevance

/dokuwiki/inc/Parsing/ParserMode/
DQuotes.php16 $this->Lexer->addSpecialPattern(
21 $this->Lexer->addSpecialPattern(
26 $this->Lexer->addSpecialPattern(
33 $this->Lexer->addSpecialPattern(
38 $this->Lexer->addSpecialPattern(
DCamelcaselink.php10 $this->Lexer->addSpecialPattern(
DMultiplyentity.php14 $this->Lexer->addSpecialPattern(
DInternallink.php11 $this->Lexer->addSpecialPattern("\[\[.*?\]\](?!\])", $mode, 'internallink');
DNotoc.php10 $this->Lexer->addSpecialPattern('~~NOTOC~~', $mode, 'notoc');
DHr.php10 $this->Lexer->addSpecialPattern('\n[ \t]*-{4,}[ \t]*(?=\n)', $mode, 'hr');
DLinebreak.php10 $this->Lexer->addSpecialPattern('\x5C{2}(?:[ \t]|(?=\n))', $mode, 'linebreak');
DMedia.php11 $this->Lexer->addSpecialPattern("\{\{(?:[^\}]|(?:\}[^\}]))+\}\}", $mode, 'media');
DNocache.php10 $this->Lexer->addSpecialPattern('~~NOCACHE~~', $mode, 'nocache');
DHeader.php11 $this->Lexer->addSpecialPattern(
DRss.php10 $this->Lexer->addSpecialPattern("\{\{rss>[^\}]+\}\}", $mode, 'rss');
DEmaillink.php11 $this->Lexer->addSpecialPattern('<' . PREG_PATTERN_VALID_EMAIL . '>', $mode, 'emaillink');
DEol.php16 $this->Lexer->addSpecialPattern('(?:^[ \t]*)?\n', $mode, 'eol');
DWindowssharelink.php18 $this->Lexer->addSpecialPattern(
DFilelink.php25 $this->Lexer->addSpecialPattern(
DWordblock.php43 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'wordblock');
DSmiley.php39 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'smiley');
DEntity.php40 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'entity');
DExternallink.php37 $this->Lexer->addSpecialPattern($pattern, $mode, 'externallink');
DAcronym.php38 $this->Lexer->addSpecialPattern($this->pattern, $mode, 'acronym');
/dokuwiki/_test/tests/inc/parser/
Dlexer.test.php351 $lexer->addSpecialPattern("b+", "a", "b");
440 $lexer->addSpecialPattern('b','caught','special');
470 $lexer->addSpecialPattern('b','caught','special');
500 $lexer->addSpecialPattern('b','caught','special');
530 $lexer->addSpecialPattern('b','caught','special');
560 $lexer->addSpecialPattern('b','caught','special');
585 $lexer->addSpecialPattern($pattern,'ignore','caught');
/dokuwiki/inc/Parsing/Lexer/
DLexer.php106 public function addSpecialPattern($pattern, $mode, $special) function in dokuwiki\\Parsing\\Lexer\\Lexer
/dokuwiki/lib/plugins/info/
Dsyntax.php44 $this->Lexer->addSpecialPattern('~~INFO:\w+~~', $mode, 'plugin_info');