Lines Matching refs:tagAttributes
120 $tagAttributes = TagAttributes::createFromTagMatch($match, $defaultConfValue, $knownTypes);
126 $tagAttributes->addClassName("badge");
127 $type = $tagAttributes->getType();
156 $backgroundColor = $tagAttributes->getValue(ColorRgb::BACKGROUND_COLOR);
171 $tagAttributes->addStyleDeclarationIfNotSet(ColorRgb::BACKGROUND_COLOR, $backgroundColor);
173 if (!$tagAttributes->hasComponentAttribute(ColorRgb::BORDER_COLOR)) {
175 $tagAttributes->addStyleDeclarationIfNotSet(ColorRgb::BORDER_COLOR, $borderColor);
177 if (!$tagAttributes->hasComponentAttribute(ColorRgb::COLOR)) {
189 $tagAttributes->addStyleDeclarationIfNotSet(ColorRgb::COLOR, $textColor);
192 $tagAttributes->addClassName("alert-" . $type);
195 $rounded = $tagAttributes->getValueAndRemove(self::ATTRIBUTE_ROUNDED);
202 $tagAttributes->addClassName($badgePillClass);
207 PluginUtility::ATTRIBUTES => $tagAttributes->toCallStackArray()
249 $tagAttributes = TagAttributes::createFromCallStackArray($attributes, self::TAG);
251 $tagAttributes->addStyleDeclarationIfNotSet("white-space", "normal");
252 $renderer->doc .= $tagAttributes->toHtmlEnterTag("span") . DOKU_LF;