mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-30 15:24:05 +03:00
21 lines
427 B
Markdown
21 lines
427 B
Markdown
# @bbob/parser
|
|
[](https://packagephobia.now.sh/result?p=@bbob/parser)
|
|
|
|
Parses BBCode and returns AST Tree looks like
|
|
|
|
|
|
`[url=]hello world![/url]`
|
|
to
|
|
|
|
```json
|
|
[
|
|
{
|
|
"tag": "url",
|
|
"attrs": {
|
|
"url": "https://github.com/JiLiZART/bbob/tree/master/packages/bbob-parser"
|
|
},
|
|
"content": ["hello", " ", "world!"]
|
|
}
|
|
]
|
|
```
|