Skip to content

Support for '&' #3

@sfionov

Description

@sfionov

Currently jLess doesn't parse '&' sign, which means last selector extension (by class or property) without level bump, e.g.:

a {
    text-decoration: none;
    &:hover, &.selected li, .btn{
        border-width: 1px;
    }
}

expands to:

a{
    text-decoration:none;
}
a:hover, a.selected li, a .btn{
    border-width:1px;
}

It would be nice if jless will support this feature.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions