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

chore: correct changeset text

This commit is contained in:
Nikolay Kostyurin
2025-10-17 14:34:10 +02:00
parent 655069d32a
commit 3e4c87f720
+19 -5
View File
@@ -19,11 +19,25 @@ Now `@bbob/parser` correctly parses tags like
```html ```html
[url=javascript:alert('XSS ME');]TEXT[/url] [url=javascript:alert('XSS ME');]TEXT[/url]
``` ```
to to correct attributes
```json ```json
{
"tag": "url",
"attrs": {
"javascript:alert('XSS ME')": "javascript:alert('XSS ME')"
},
"content": [
"TEXT"
],
"start": {
"from": 0,
"to": 38
},
"end": {
"from": 38,
"to": 42
}
}
``` ```
Fixes #300 Fixes #300