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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user