atom-html-to-css icon indicating copy to clipboard operation
atom-html-to-css copied to clipboard

Bugs and feature-request

Open nicothin opened this issue 7 years ago • 0 comments

I extract code:

<label class="field-text">
  <div class="field-text__name">Text</div>
  <div class="field-text__input-wrap   field-text__input-wrap--mod">
    <input class="field-text__input" type="text" placeholder="">
    <div class="field-text__help-text">Text</div>
  </div>
</label>

end result:

.field-text {

    &__name {

    }

    &__input-wrap {

    }

    &__input-wrap--mod {

    }

    &__input {

    }

    &__help-text {

    }

}

. {

    &field-text__name {

    }

    &field-text__input-wrap {

    }

    &field-text__input-wrap--mod {

    }

    &field-text__input {

    }

    &field-text__help-text {

    }

}


it's a bit strange ))

it would be great if it would be possible to get the code:

.block {
  &__elem {}
  &__elem {
    &--modifier {}
  }
}

it would be great to have an option for moving after nested brackets and separator setting for BEM-modifier

nicothin avatar Oct 18 '16 15:10 nicothin