mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-27 14:45:03 +03:00
15 lines
308 B
Markdown
15 lines
308 B
Markdown
# @bbob/core
|
|
|
|
## Usage
|
|
|
|
```js
|
|
import bbob from '@bbob/core'
|
|
import { render } from '@bbob/html'
|
|
import presetHTML5 from '@bbob/preset-html5'
|
|
const code = `[i]Text[/i]`;
|
|
|
|
const html = bbob(presetHTML5()).process(code, { render }).html;
|
|
|
|
console.log(html); // <span style="font-style: italic;">Text</span>
|
|
```
|