2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +03:00

fix: correct changeset from major to patch

This commit is contained in:
Nikolay Kostyurin
2025-10-14 11:19:19 +02:00
parent 9099fbab0b
commit 96b168a3a2
2 changed files with 25 additions and 16 deletions
+13 -13
View File
@@ -1,17 +1,17 @@
---
"@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
"@bbob/parser": patch
"@bbob/cli": patch
"@bbob/core": patch
"@bbob/html": patch
"@bbob/plugin-helper": patch
"@bbob/preset": patch
"@bbob/preset-html5": patch
"@bbob/preset-react": patch
"@bbob/preset-vue": patch
"@bbob/react": patch
"@bbob/types": patch
"@bbob/vue2": patch
"@bbob/vue3": patch
---
Now `@bbob/parser` correctly parses nested tags like
+12 -3
View File
@@ -14,7 +14,16 @@
"@bbob/cli": patch
---
fixes problem with context free tags
Now `@bbob/parser` in context free tags mode correctly parses
now code like `[code][codeButton]text[/codeButton][/code]`
will be parsed correctly to `<code>[codeButton]text[/codeButton]</code>`
code like
```html
[code][codeButton]text[/codeButton][/code]
```
will be parsed correctly to
```html
<code>[codeButton]text[/codeButton]</code>
```
Fixes #289