Lines Matching defs:tagAttributes
247 public static function renderEnterXhtml(TagAttributes $tagAttributes, $data, $renderer): string
258 $type = $tagAttributes->getType();
262 $tagAttributes->addClassName("blockquote");
268 $tagAttributes->addClassName("mb-0");
270 return $tagAttributes->toHtmlEnterTag("blockquote");
282 $tagAttributes->addClassName("twitter-tweet");
286 if ($tagAttributes->hasComponentAttribute($tweetAttributesName)) {
287 $value = $tagAttributes->getValueAndRemove($tweetAttributesName);
288 $tagAttributes->addOutputAttributeValue("data-" . $tweetAttributesName, $value);
292 return $tagAttributes->toHtmlEnterTag("blockquote");
308 $tagAttributes->addClassName(self::CARD_TYPE);
309 return $tagAttributes->toHtmlEnterTag("div") . DOKU_LF;
320 static function renderExitXhtml(TagAttributes $tagAttributes, Doku_Renderer_xhtml $renderer, array $data)
325 $type = $tagAttributes->getValue(TagAttributes::TYPE_KEY);