html2slim icon indicating copy to clipboard operation
html2slim copied to clipboard

erb2slim generates text commands wrong for trailing space.

Open MrJoy opened this issue 10 years ago • 0 comments

This:

<p><font face="verdana" size="5" color="#555555"><strong>Dear <%= @name %>,</strong></font></p>

Becomes this (note trailing whitespace after 'Dear'):

p
  font[face="verdana" size="5" color="#555555"]
    strong
      | Dear 
      = @name
      | ,

When it SHOULD be:

p
  font[face="verdana" size="5" color="#555555"]
    strong
      ' Dear
      = @name
      | ,

MrJoy avatar Jun 27 '14 05:06 MrJoy