Add script 'get-openssl-version.sh'.
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace dokuwiki\Parsing\ParserMode;
|
||||
|
||||
class Notoc extends AbstractMode
|
||||
{
|
||||
|
||||
/** @inheritdoc */
|
||||
public function connectTo($mode)
|
||||
{
|
||||
$this->Lexer->addSpecialPattern('~~NOTOC~~', $mode, 'notoc');
|
||||
}
|
||||
|
||||
/** @inheritdoc */
|
||||
public function getSort()
|
||||
{
|
||||
return 30;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user