mirror of
https://github.com/tenrok/BBob.git
synced 2026-06-11 18:02:26 +03:00
fix(plugin-helper): better handle content of TagNode
This commit is contained in:
@@ -5,7 +5,7 @@ class TagNode {
|
||||
constructor(tag, attrs, content) {
|
||||
this.tag = tag;
|
||||
this.attrs = attrs;
|
||||
this.content = content;
|
||||
this.content = [].concat(content);
|
||||
}
|
||||
|
||||
attr(name, value) {
|
||||
|
||||
Reference in New Issue
Block a user