2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-18 12:39:39 +03:00

fix(parser): only allowed tags error

This commit is contained in:
Nikolay Kostyurin
2018-07-11 01:10:43 +02:00
parent 9310b1e919
commit d3e8e4a289
2 changed files with 24 additions and 2 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
const {
convertTokenToText,
convertTagToText,
getTagName,
getTokenColumn,
getTokenLine,
@@ -187,7 +187,7 @@ const handleTagToken = (token) => {
// [/tag]
handleTagEnd(token);
} else {
appendNode(convertTokenToText(token));
appendNode(convertTagToText(token));
}
}
};