allowInlineStyles方法

void allowInlineStyles({
  1. String? tagName,
})

允许元素上使用内联样式。

如果未指定tagName,则允许所有元素使用内联样式。否则,tagName将样式限制在指定的元素上。

实现

void allowInlineStyles({String? tagName}) {
  if (tagName == null) {
    tagName = '*';
  } else {
    tagName = tagName.toUpperCase();
  }
  add(new _SimpleNodeValidator(null, allowedAttributes: ['$tagName::style']));
}