Lines Matching refs:tagAttributes

191             $tagAttributes = TagAttributes::createFromCallStackArray($callStackArray);
192 $text = $tagAttributes->getValue(HeadingTag::HEADING_TEXT_ATTRIBUTE);
196 $level = $tagAttributes->getValue(HeadingTag::LEVEL);
201 $parsedLabel = $tagAttributes->getValue(self::PARSED_LABEL);
224 $tagAttributes = TagAttributes::createFromCallStackArray($callStackArray);
225 $text = $tagAttributes->getValue(HeadingTag::HEADING_TEXT_ATTRIBUTE);
226 $level = $tagAttributes->getValue(HeadingTag::LEVEL);
234 * @param TagAttributes $tagAttributes
239 public static function processRenderEnterXhtml(string $context, TagAttributes $tagAttributes, Doku_Renderer_xhtml &$renderer, ?int $pos)
251 $type = $tagAttributes->getType();
266 $tagAttributes->removeAttributeIfPresent(self::PARSED_LABEL);
272 $level = $tagAttributes->getValueAndRemove(HeadingTag::LEVEL);
300 $tagAttributes->addClassName($displayClass);
309 $tagAttributes->addClassName($type);
317 $tagAttributes->addClassName("card-title");
330 $tagAttributes->addClassName(Outline::getOutlineHeadingClass());
375 $tagAttributes->removeComponentAttributeIfPresent(self::HEADING_TEXT_ATTRIBUTE);
397 $tagAttributes->addClassName("d-none");
406 $renderer->doc .= $tagAttributes->toHtmlEnterTag($tag);
411 * @param TagAttributes $tagAttributes
416 static function renderClosingTag(TagAttributes $tagAttributes, string $context): string
418 $level = $tagAttributes->getValueAndRemove(HeadingTag::LEVEL);
495 static function handleEnter(\Doku_Handler $handler, TagAttributes $tagAttributes, string $markupTag): array
506 $level = $tagAttributes->getValue(HeadingTag::LEVEL);
513 $type = $tagAttributes->getType();
521 $tagAttributes->setType($type);
544 $tagAttributes->addComponentAttributeValue(HeadingTag::LEVEL, $level);