npm.io
0.0.2 • Published 9 years ago

bemification

Licence
ISC
Version
0.0.2
Deps
0
Vulns
0
Weekly
0
Stars
4

bemification

An advanced preprocessor to write a cleat BEM oriented code. Now is in the initial stage of syntax drafts.

Basic usage:

some bemmed HTML code:

 
Tabs 
    tab[active]
    tab
    tab

This will be translated into:

    <div class="tabs">
        <div class="tabs__tab--active">
        <div class="tabs__tab">
        <div class="tabs__tab">
    </div>

Sass output:

    .tabs
      &__tab
        &--active