SkillAgentSearch skills...

Html2bemjson

html to bemjson converter

Install / Use

/learn @bem-contrib/Html2bemjson
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

html2bemjson

Converts HTML to BEMJSON.

Installation

npm install html2bemjson --save

Usage

var html2bemjson = require('html2bemjson');
var html = '<div class="b1"><div class="b1__elem1"></div></div>';

html2bemjson.convert(html); // BEMJSON object

html2bemjson.stringify(html);
// {
//     block: 'b1',
//     content: [
//         {
//             block: 'b1',
//             elem: 'elem1'
//         }
//     ]
// }

Options

Both methods can take options object as a second argument:

require('html2bemjson').stringify('<div class="b1 b1--mod">', {
    preserveComments: false,
    naming: { elem: '__', mod: '--' }, // refer to https://en.bem.info/tools/bem/bem-naming/ for details
    indent: '\t'
});

For more examples please refer to test folder.

Related Skills

View on GitHub
GitHub Stars29
CategoryDevelopment
Updated1y ago
Forks2

Languages

JavaScript

Security Score

60/100

Audited on Mar 13, 2025

No findings