Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3434174
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T07:39:58+00:00 2026-05-18T07:39:58+00:00

I’m using Haml in a Rails 3 app, and its newlines drive me nuts!

  • 0

I’m using Haml in a Rails 3 app, and its newlines drive me nuts! For example,

%span
  foo

renders as

<span>
foo
</span>

But I’d much rather want

<span>foo</foo>

The reason (apart from being cleaner XML) is that extra newlines are a problem for my Selenium tests because they mess up the ability to do XPath queries like "//span[.='foo']". So I’d have to write '\nfoo\n' instead (ew!), or use //span[contains(text(), 'foo')], which matches too broadly.

I know I could use the alligator operators (“<” and “>”) to strip whitespace, but since I don’t ever have a case where I want the newlines to appear in the output, I’d just end up adding them mechanically at the end of each line. And that just seems very unDRY.

So now I see two solutions:

  1. Force Haml to never emit newlines unless they come from a Ruby expression. I see some nuke_inner_whitespace / nuke_outer_whitespace variables spread around the Haml code that might do the job, but I’m not sure how to change them without resorting to gratuitous monkey-patching.
  2. Hook into Rails to apply a gsub!("\n", "") to all rendered HTML. (For textarea’s and pre’s, I could still use ~ "foo\nbar" to make Haml emit foo&#x000A;bar.) But where’s the right place to hook into Rails? I’m a little lost in the code.

Any pointers or other suggestions appreciated!

Update: I’ve used Jason’s monkey patch below for a while now and I’m beginning to think that it’s not worth it. E.g. if I want to get <span>[del]</span> <span>foo</span>, it’s difficult to not have the blank space in between nuked. Even the following will render as [del]foo on the page:

%span
  = '[del] '
%span
  foo

So I think I’m going back to adding alligator operators manually (see my self-answer down below). Live and learn.

Thanks again to Jason! 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T07:39:58+00:00Added an answer on May 18, 2026 at 7:39 am

    If you place a less-than sign at the end of the element name the whitespace around the content will be suppressed:

    %span<
      foo
    

    See whitespace removal in the Haml reference for more details.

    There doesn’t appear to be any clean way to force these flags on for all tags but the following monkey patch works fine with Haml 3.0.24:

    module Haml::Precompiler
      def parse_tag_with_nuked_whitespace(line)
        result = parse_tag_without_nuked_whitespace line
        unless result.size == 9 && [false,true].include?(result[4]) && [false,true].include?(result[5])
          raise "Unexpected parse_tag output: #{result.inspect}"
        end
        result[4] = true # nuke_outer_whitespace
        result[5] = true # nuke_inner_whitespace
        result
      end
      alias_method_chain :parse_tag, :nuked_whitespace
    end
    

    It probably wouldn’t be hard to fork Haml and add an option to the Engine options to always nuke whitespace. The parse_tag method could check this option if enabled and set the inner and outer flags to true. I’ll leave this as an exercise for the reader. 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
In order to apply a triggered animation to all ToolTip s in my app,
I want to count how many characters a certain string has in PHP, but
Seemingly simple, but I cannot find anything relevant on the web. What is the
I want use html5's new tag to play a wav file (currently only supported
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
Does anyone know how can I replace this 2 symbol below from the string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.