allowTextElements 方法

void allowTextElements()

允许基本文本元素。

这允许使用HTML5元素的一个子集,特别是以下标签和没有属性。

  • B
  • BLOCKQUOTE
  • BR
  • EM
  • H1
  • H2
  • H3
  • H4
  • H5
  • H6
  • HR
  • I
  • LI
  • OL
  • P
  • SPAN
  • UL

实现

void allowTextElements() {
  add(new _SimpleNodeValidator.allowTextElements());
}