for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace dokuwiki\ParserMode;
class Preformatted extends AbstractMode
{
/** @inheritdoc */
public function connectTo($mode)
// Has hard coded awareness of lists...
$this->Lexer->addEntryPattern('\n (?![\*\-])', $mode, 'preformatted');
$this->Lexer->addEntryPattern('\n\t(?![\*\-])', $mode, 'preformatted');
// How to effect a sub pattern with the Lexer!
$this->Lexer->addPattern('\n ', 'preformatted');
$this->Lexer->addPattern('\n\t', 'preformatted');
}
public function postConnect()
$this->Lexer->addExitPattern('\n', 'preformatted');
public function getSort()
return 20;