2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-21 13:24:05 +03:00
Files
bbob/packages/bbob-core
Nikolay Kostyurin 10f6ff9ff1 Publish
- @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
2018-08-09 02:46:35 +02:00
..
2018-07-30 22:52:48 +02:00
2018-07-08 13:30:13 +02:00
2018-08-09 02:46:35 +02:00
2018-08-09 02:46:35 +02:00
2018-07-30 22:52:48 +02:00

@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>