mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-21 13:24:05 +03:00
10f6ff9ff1
- @bbob/cli@1.0.7 - @bbob/core@1.1.0 - @bbob/html@1.1.0 - @bbob/parser@1.2.0 - @bbob/plugin-helper@1.1.0 - @bbob/preset-html5@1.1.0 - @bbob/react@1.1.0
@bbob/core
Usage
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>