npm.io
0.0.9 • Published 9 years ago

pug-bem-lexer

Licence
ISC
Version
0.0.9
Deps
0
Vulns
0
Weekly
0
Stars
1

pug-bem-lexer

A plugin that adds BEM shortcuts to pug

This repo has been deprecated in favor of pug-bemify

Installation

run npm i pug-bem-lexer

Setup

pug.render(somePugString, {
  plugins : [
    {
        lex : require('pug-bem-lexer')
    }
  ]
});

Example Usage

.block.-a-modifier
    ._some-element

renders:

<div class="block block--a-modifier">
    <div class="block__some-element"></div>
</div>

Keywords