12345678910111213141516171819 |
- <?php
- namespace dokuwiki\Parsing\ParserMode;
- class Nocache extends AbstractMode
- {
- /** @inheritdoc */
- public function connectTo($mode)
- {
- $this->Lexer->addSpecialPattern('~~NOCACHE~~', $mode, 'nocache');
- }
- /** @inheritdoc */
- public function getSort()
- {
- return 40;
- }
- }
|