2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-06-02 16:04:04 +03:00
Files
bbob/packages/bbob-parser/README.md
T
2018-07-11 16:58:26 +02:00

21 lines
425 B
Markdown

# @bbob/parser
[![install size](https://packagephobia.now.sh/badge?p=@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!"]
}
]
```