0.0.2 • Published 8 years ago

bemification v0.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

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:

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