mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
f35a37433b
- @bbob/cli@2.0.1 - @bbob/core@2.0.1 - @bbob/html@2.1.0 - @bbob/parser@2.1.0 - @bbob/plugin-helper@2.0.1 - @bbob/preset-html5@2.1.0 - @bbob/preset-react@2.0.1 - @bbob/preset@2.1.0 - @bbob/react@2.0.1
@bbob/core
Usage
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>