Jwing28 / zen-coding

Automatically exported from code.google.com/p/zen-coding
0 stars 0 forks source link

Coda wrap with abbriviation doesn't work on PHP #219

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In Coda when wrapping abbriviation around code include PHP this happens:

Before:
<?php foreach($field_medarbejder_bullets as $bullet) : ?>
   <li><?php echo $bullet['view']; ?></li>
<?php endforeach; ?>

After:
<div class="wrap"><?php foreach(\$field_medarbejder_bullets as \$bullet) : ?>
  <li><?php echo \$bullet['view']; ?></li>
<?php endforeach; ?></div>

Notice the \ in front of every variable...

Original issue reported on code.google.com by createin...@gmail.com on 19 Nov 2010 at 2:16

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago

Original comment by serge....@gmail.com on 1 Feb 2011 at 10:56

GoogleCodeExporter commented 9 years ago
Fixed in v0.7

Original comment by serge....@gmail.com on 2 Feb 2011 at 10:23

GoogleCodeExporter commented 9 years ago
Sounds great! Thank You!

Original comment by createin...@gmail.com on 3 Feb 2011 at 8:13