mirror of
https://github.com/tenrok/BBob.git
synced 2026-06-20 20:00:33 +03:00
fix: correct changeset from major to patch
This commit is contained in:
@@ -1,17 +1,17 @@
|
|||||||
---
|
---
|
||||||
"@bbob/parser": major
|
"@bbob/parser": patch
|
||||||
"@bbob/cli": major
|
"@bbob/cli": patch
|
||||||
"@bbob/core": major
|
"@bbob/core": patch
|
||||||
"@bbob/html": major
|
"@bbob/html": patch
|
||||||
"@bbob/plugin-helper": major
|
"@bbob/plugin-helper": patch
|
||||||
"@bbob/preset": major
|
"@bbob/preset": patch
|
||||||
"@bbob/preset-html5": major
|
"@bbob/preset-html5": patch
|
||||||
"@bbob/preset-react": major
|
"@bbob/preset-react": patch
|
||||||
"@bbob/preset-vue": major
|
"@bbob/preset-vue": patch
|
||||||
"@bbob/react": major
|
"@bbob/react": patch
|
||||||
"@bbob/types": major
|
"@bbob/types": patch
|
||||||
"@bbob/vue2": major
|
"@bbob/vue2": patch
|
||||||
"@bbob/vue3": major
|
"@bbob/vue3": patch
|
||||||
---
|
---
|
||||||
|
|
||||||
Now `@bbob/parser` correctly parses nested tags like
|
Now `@bbob/parser` correctly parses nested tags like
|
||||||
|
|||||||
@@ -14,7 +14,16 @@
|
|||||||
"@bbob/cli": patch
|
"@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]`
|
code like
|
||||||
will be parsed correctly to `<code>[codeButton]text[/codeButton]</code>`
|
```html
|
||||||
|
[code][codeButton]text[/codeButton][/code]
|
||||||
|
```
|
||||||
|
|
||||||
|
will be parsed correctly to
|
||||||
|
```html
|
||||||
|
<code>[codeButton]text[/codeButton]</code>
|
||||||
|
```
|
||||||
|
|
||||||
|
Fixes #289
|
||||||
|
|||||||
Reference in New Issue
Block a user