mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-30 15:24:05 +03:00
e3c2a2f4dd
- @bbob/cli@2.0.0 - @bbob/core@2.0.0 - @bbob/html@2.0.0 - @bbob/parser@2.0.0 - @bbob/plugin-helper@2.0.0 - @bbob/preset-html5@2.0.0 - @bbob/preset-react@2.0.0 - @bbob/preset@2.0.0 - @bbob/react@2.0.0
@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>