mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
4ab06bed08
- @bbob/cli@1.0.8 - @bbob/core@1.1.1 - @bbob/html@1.1.1 - @bbob/parser@1.3.1 - @bbob/plugin-helper@1.1.1 - @bbob/preset-html5@1.1.1 - @bbob/preset-react@1.1.1 - @bbob/preset@1.1.1 - @bbob/react@1.1.1
@bbob/core
Usage
const bbob = require('@bbob/core');
const render = require('@bbob/html');
const presetHTML5 = require('@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>