contentAttributes top-level property
Facet for content attributes on the editor.
Implementation
final Facet<Map<String, String>, Map<String, String>> contentAttributes =
Facet.define(FacetConfig(
combine: (values) {
final result = <String, String>{};
for (final attrs in values) {
result.addAll(attrs);
}
return result;
},
));