-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support (a + b) * 3 > c #92
Comments
What is the output you're expecting? This is my interpretation of it:
Is that correct? |
No, i would expect something like:
|
I would like that too. Best would be to keep that zencoding compatible https://code.google.com/p/zen-coding/
I btw agree with noone here. The example given makes no sense. a*3>c gives <a href="">
<c></c>
</a>
<a href="">
<c></c>
</a>
<a href="">
<c></c>
</a> the c gets wrapped into the tag/part in front of the > which just does not make sense with a group there. The output by spaceone should be the result of this
which i agree is not really short :(. And sporkbox output should be the results of this.
|
In my case c is not only c but some more things, I don't want to repeat them. |
I understand that. And sympathize with it. Unfortunately that would require some new feature i would say. The features we have just don't provide it. How about
But i don't see the usefulness for html development here. But i guess it could be done. |
I am not developping only HTML but also XML. "|" is for me "or" or a pipe. |
I am writing XML files with the plugin but i am missing a functionality to group things for repeating:
(a + b) * 3 > c
→
<a><c/></a>
<a><c/></a>
<a><c/></a>
<b><c/></b>
<b><c/></b>
The text was updated successfully, but these errors were encountered: