hudochenkov / ecsstractor

Sublime Text plugin for extracting class names from HTML and generate CSS stylesheet for following work.

Home Page:https://packagecontrol.io/packages/eCSStractor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wrong convertation with key-value BEM modifier

zoxon opened this issue · comments

commented

Plugin convert modifer nav_type_main to &_type

<ul class="nav nav_type_main">
    <li class="nav__item">
        <a href="" class="nav__link">Home</a>
    </li>
    <li class="nav__item">
        <a href="" class="nav__link">Shop</a>
    </li>
    <li class="nav__item">
        <a href="" class="nav__link nav__link_special">About</a>
    </li>
</ul>
.nav
    &_type

    &__item

    &__link
        &_special

Fixed. Version 1.5.1 will be available in about 20 minutes via Package Control.

commented

Thank you