Home
last modified time | relevance | path

Searched refs:addCloserPattern (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/_test/tests/Parsing/Lexer/
H A DLexerTest.php349 $lexer->addCloserPattern('\w\*\*', 'caught', '\n\n');
371 $lexer->addCloserPattern('\w\*\*', 'caught');
384 $lexer->addCloserPattern('\w\*\*', 'caught');
402 $lexer->addCloserPattern('(?<=\w)\*\*', 'caught');
420 $lexer->addCloserPattern('(?<=\w)\*\*', 'caught');
437 $lexer->addCloserPattern('(?<=\w)\*\*', 'caught');
453 $lexer->addCloserPattern('\w\*\*', 'caught');
479 $lexer->addCloserPattern('(?<=\w)\*\*', 'outer');
483 $lexer->addCloserPattern('(?<=\w)//', 'inner');
505 $lexer->addCloserPattern('(?<=\w)\*\*', 'outer');
[all …]
/dokuwiki/inc/Parsing/ParserMode/
H A DFootnote.php49 $this->Lexer->addCloserPattern('\x29\x29', 'footnote');
H A DAbstractFormatting.php124 $this->Lexer->addCloserPattern($closer, $this->getModeName(), Lexer::PARA_BREAK);
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php142 public function addCloserPattern($pattern, $mode, $boundary = null) function in dokuwiki\\Parsing\\Lexer\\Lexer