for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace dokuwiki\Parsing\ParserMode;
class File extends AbstractMode
{
/** @inheritdoc */
public function connectTo($mode)
$this->Lexer->addEntryPattern('<file\b(?=.*</file>)', $mode, 'file');
}
public function postConnect()
$this->Lexer->addExitPattern('</file>', 'file');
public function getSort()
return 210;