はじまりの大地

This commit is contained in:
miteruzo
2024-07-08 03:32:47 +09:00
commit c616a96f53
7749 changed files with 478270 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace dokuwiki\Parsing\ParserMode;
class Internallink extends AbstractMode
{
/** @inheritdoc */
public function connectTo($mode)
{
// Word boundaries?
$this->Lexer->addSpecialPattern("\[\[.*?\]\](?!\])", $mode, 'internallink');
}
/** @inheritdoc */
public function getSort()
{
return 300;
}
}