UNPKG

308 BMarkdownView Raw
1# @bbob/core
2
3## Usage
4
5```js
6import bbob from '@bbob/core'
7import { render } from '@bbob/html'
8import presetHTML5 from '@bbob/preset-html5'
9const code = `[i]Text[/i]`;
10
11const html = bbob(presetHTML5()).process(code, { render }).html;
12
13console.log(html); // <span style="font-style: italic;">Text</span>
14```