Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing whitespaces in HAML

Is there a way to achieve this in HAML?

<h1>Lorem ip<span class="red">sum</span><span class="subtitle">dolor</span></h1>

I used this online tool conversor (http://html2haml.heroku.com/)

%h1
  Lorem ip
  %span.red sum
  %span.subtitle dolor

and render this in HTML:

<h1>
  Lorem ip
  <span class='red'>sum</span>
  <span class='subtitle'>dolor</span>
</h1>

I'm trying to remove the whitespace between ip and sum but I can't achieve it.

like image 205
xbelanch Avatar asked Feb 27 '11 19:02

xbelanch


1 Answers

With this:

%h1<
  Lorem ip
  %span.red> sum
  %span.subtitle dolor

Output looks like this:

<h1>Lorem ip<span class="red">sum</span><span class="subtitle">dolor</span></h1>

HAML Whitespace Removal

like image 176
Heikki Avatar answered Nov 17 '22 02:11

Heikki