axr / specification

This is where we work on the specification for AXR
spec.axrproject.org
13 stars 0 forks source link

new modifier: multiplicator #87

Open Mouvedia opened 11 years ago

Mouvedia commented 11 years ago
//selects the elements descendants of container nested at the 5th level
root container 4(*) element { }
//would be equivalent to
root container * * * * element { }

Should we allow a selector chain inside the parentheses?

root container 4(test1 test2) element { }
//would be equivalent to
root container test1 test2 test1 test2 test1 test2 test1 test2 element { }

FYI the other 2 modifiers ($ and !) only accept simple selectors.