mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
fix(296): parse with lost repeated closing tag (#297)
* 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
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
---
|
||||
"@bbob/parser": major
|
||||
"@bbob/cli": major
|
||||
"@bbob/core": major
|
||||
"@bbob/html": major
|
||||
"@bbob/plugin-helper": major
|
||||
"@bbob/preset": major
|
||||
"@bbob/preset-html5": major
|
||||
"@bbob/preset-react": major
|
||||
"@bbob/preset-vue": major
|
||||
"@bbob/react": major
|
||||
"@bbob/types": major
|
||||
"@bbob/vue2": major
|
||||
"@bbob/vue3": major
|
||||
---
|
||||
|
||||
Now `@bbob/parser` correctly parses nested tags like
|
||||
|
||||
```html
|
||||
Hello World[u]Wrong underline[u] This is another text [u]and this, too[/u]
|
||||
```
|
||||
to
|
||||
```html
|
||||
Hello World[u]Wrong underline[u] This is another text <u>and this, too</u>
|
||||
```
|
||||
|
||||
Fixes #296, #295
|
||||
Reference in New Issue
Block a user