Lines Matching defs:match

127      * @param string $match
134 public static function handleStatic(string $match, int $state, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin): array
143 return self::handleStaticEnter($match, $pos, $handler, $plugin);
147 $data = PluginUtility::handleAndReturnUnmatchedData(null, $match, $handler);
162 return self::handleStaticExit($match, $pos, $handler, $plugin);
274 public static function handleStaticEnter(string $match, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin): array
280 $match = trim($match);
281 $match = str_replace("\n", " ", $match);
284 $markupTag = PluginUtility::getMarkupTag($match);
419 $tagAttributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, $knownTypes, $allowAnyFirstBooleanAttributesAsType);
422 $attributesArray = PluginUtility::getQualifiedTagAttributes($match, true, $secondBooleanAttribute, $knownTypes, $allowAnyFirstBooleanAttributesAsType);
453 GridTag::processEnter($tagAttributes, $handler, $match);
557 public static function handleStaticExit(string $match, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin): array
559 $markupTag = PluginUtility::getMarkupTag($match);
577 $returnedArray = CardTag::handleExit($handler, $pos, $match);
582 $returnedArray = BarTag::handleExit($handler, $pos, $match);
640 $returnedArray = PanelTag::handleExit($handler, $pos, $markupTag, $match);
701 public static function handleStaticEmptyTag(string $match, int $state, int $pos, Doku_Handler $handler, DokuWiki_Syntax_Plugin $plugin): array
706 $logicalTag = PluginUtility::getMarkupTag($match);
745 $tagAttributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, $knownTypes, $allowAnyFirstBooleanAttributesAsType)