mirror of
https://github.com/tenrok/BBob.git
synced 2026-06-20 20:00:33 +03:00
29f909a589
* fix: extract node list ot separate file, fix nested parsing * chore: node list tests * fix: nested tags parsing * chore: changeset * chore: remove unused files * chore: disable publish on every commit
554 B
554 B
@bbob/parser, @bbob/cli, @bbob/core, @bbob/html, @bbob/plugin-helper, @bbob/preset, @bbob/preset-html5, @bbob/preset-react, @bbob/preset-vue, @bbob/react, @bbob/types, @bbob/vue2, @bbob/vue3
| @bbob/parser | @bbob/cli | @bbob/core | @bbob/html | @bbob/plugin-helper | @bbob/preset | @bbob/preset-html5 | @bbob/preset-react | @bbob/preset-vue | @bbob/react | @bbob/types | @bbob/vue2 | @bbob/vue3 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| major | major | major | major | major | major | major | major | major | major | major | major | major |
Now @bbob/parser correctly parses nested tags like
Hello World[u]Wrong underline[u] This is another text [u]and this, too[/u]
to
Hello World[u]Wrong underline[u] This is another text <u>and this, too</u>
Fixes #296, #295