Как вставить HTML-код в атрибуте scalatags?

У меня есть кнопка, которая используется как поповер с загрузкой Twitter.

button(data.content := h1("an example of html").render, data.toggle="popover")("click here")

Я хочу иметь HTML-код в содержимом поповера, поэтому мне нужно передать HTML в data.toggle Атрибут, однако это печатает HTML-код в открытом виде из-за скалатагов, препятствующих XSS. Как я могу предотвратить это / как еще я могу получить этот эффект?

1 ответ

Это ужасно, но это будет делать то, что вы хотите. Я не уверен, что есть лучший способ.

import scalatags.Text.{Attr, TypedTag}
import scalatags.Text.all._
import scalatags.text.Builder

// Warning: this extends a "more-or-less internal trait" so may stop working after a ScalaTags update.
final case class RawValueSource(v: String) extends Builder.ValueSource {
  override def appendAttrValue(strb: StringBuilder): Unit = strb.append(v)
}

// We need an AttrValue for tags. This one just renders the tag *without* escaping the result.
class TagAttrValue extends AttrValue[TypedTag[String]] {
  override def apply(t: Builder, a: Attr, v: TypedTag[String]): Unit = {
    t.setAttr(a.name, RawValueSource(v.render))
  }
}

// We need this implicit in scope so that we can use tags on the rhs of the := operator.
implicit val tagAttr = new TagAttrValue()

button(data.content := h1("an example of html"), data.toggle := "popover")("click here")
Другие вопросы по тегам