0.0.9 • Published 7 years ago

pug-bem-lexer v0.0.9

Weekly downloads
5
License
ISC
Repository
github
Last release
7 years ago

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>