feat: add converter

This commit is contained in:
Vincent Chan 2022-08-15 13:58:46 +08:00
parent 0def9e8882
commit fe7c19666f

View File

@ -91,7 +91,7 @@ class HTMLToNodesConverter {
for (final child in element.nodes.toList()) {
if (child is html.Element) {
result.addAll(_handleElement(child, {"subtype": "quote"}));
result.addAll(_handleElement(child, {"subtype": StyleKey.quote}));
}
}