mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
16 lines
266 B
Markdown
16 lines
266 B
Markdown
# @bbob/parser
|
|
|
|
Parses BBCode and returns AST Tree looks like
|
|
|
|
```json
|
|
[
|
|
{
|
|
tag: 'url',
|
|
attrs: {
|
|
url: 'https://github.com/JiLiZART/bbob/tree/master/packages/bbob-parser'
|
|
},
|
|
content: ['hello', ' ', 'world!']
|
|
}
|
|
]
|
|
```
|