Closed GoogleCodeExporter closed 8 years ago
will fix in next release
Original comment by serge....@gmail.com
on 12 May 2011 at 9:36
This works as expected for me in Notepad++ using Zen Coding Python :/
Wrapping it with ".test" results in:
<div class="test">
<ul>
<li>$2,200</li>
<li>$1,700</li>
<li>$0</li>
<li>$900</li>
</ul>
</div>
However, if I have this code:
one
two
three
And use this bit of zen on it
tr*>(td{$#})+(td)
I get this:
<tr>
<td>one</td>
<td></td>
</tr>
<tr>
<td>two</td>
<td></td>
</tr>
<tr>
<td>three</td>
<td></td>
</tr>
But if I use this zen:
tr*>(td>span{$#})+(td)
Sublime Text 2 gives me this:
<tr>
<td><span>#</span></td>
<td>one</td>
</tr>
<tr>
<td><span>#</span></td>
<td>two</td>
</tr>
<tr>
<td><span>#</span></td>
<td>three</td>
</tr>
And Notepad++ with Zen Coding Python gives me this:
<tr>
<td><span>1#</span></td>
<td>one</td>
</tr>
<tr>
<td><span>2#</span></td>
<td>two</td>
</tr>
<tr>
<td><span>3#</span></td>
<td>three</td>
</tr>
Just so it's clear, I'm expecting this:
<tr>
<td><span>one</span></td>
<td></td>
</tr>
<tr>
<td><span>two</span></td>
<td></td>
</tr>
<tr>
<td><span>three</span></td>
<td></td>
</tr>
Original comment by lukescam...@gmail.com
on 3 Aug 2011 at 4:43
In Komodo 6.1, wrapping with "tr*>(td>span{$#})+(td)" returns the expected
result.
Original comment by max...@gmail.com
on 3 Aug 2011 at 5:49
Issue 294 has been merged into this issue.
Original comment by GreLIm...@gmail.com
on 6 Oct 2011 at 3:45
Issue 275 has been merged into this issue.
Original comment by serge....@gmail.com
on 25 Jun 2012 at 8:38
Fixed, will be available in the next release
Original comment by serge....@gmail.com
on 4 Jul 2012 at 9:32
Original comment by serge....@gmail.com
on 4 Jul 2012 at 9:32
Original issue reported on code.google.com by
mgibeau....@gmail.com
on 11 May 2011 at 4:04