Here is what I end up trying to do:
.books, .dvds, .magazines { article &.books { } article { } }
I have several nested selectors, and instead of .books article new .books article selector, I would like them to be nested, but still only target article elements in .books .
I tried this and it works, but the output is a .books.books article , which is redundant and makes me cringe.
.books, .dvds, .magazines { &.books article { /* Outputs ".books.books article, .dvds.books article, .magazines.books article"...boooo, hisssss */ } }
source share