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