HAML is a markup language that’s used to cleanly and simply describe the HTML of any web document without the use of inline code. It can be used as a standalone HTML generation tool or as a template rendering engine in a web framework such as Ruby on Rails or Ramaze.
49
votes
9answers
34k views
How do I get Haml to work with Rails?
I am trying to get Haml to work with my Ruby on Rails project. I am new to Ruby on Rails and I really like it. However, when I attempt to add an aplication.html.haml or index.html.haml for a view, I ...
47
votes
10answers
15k views
Is there a HAML implementation for use with Python and Django
I happened to stumble across HAML, an interesting and beautiful way to mark up contents and write templates for HTML.
Since I use Python and Django for my web developing need, I would like to see if ...
45
votes
9answers
14k views
Haml: Control whitespace around text
In my Rails template, I'd like to accomplish final HTML to this effect using HAML:
I will first <a href="http://example.com">link somewhere</a>, then render this half of the sentence if a ...
39
votes
7answers
13k views
Should I use haml or erb or erubis for potentially high traffic site?
I have been playing with Haml recently and really like the way the resulting code looks to me...the developer. I'm also not too worried about a designer being able to consume or change it...we're a ...
36
votes
6answers
12k views
Best strategy to use HAML template with Backbone.js
Im getting into Backbone.js to structure the javascript code for my project and I love HAML for templating on the backend(rails), so Id like to use it for Backbone Views templating. I know there is ...
36
votes
4answers
18k views
Is there a good HAML -> ERB/HTML converter?
I'm looking for a reliable way to convert a HAML template to an equivalent ERB/HTML template?
Has anyone come across one?
32
votes
1answer
22k views
How do I make an image link tag using haml in Rails?
I have something like this in application.html.haml:
#header
= image_tag("header.jpg")
How do I make that link to www.google.com, for example?
Thanks
27
votes
5answers
18k views
Using Haml & Sass with Eclipse
Are there any plugins for eclipse that add syntax highlighting and other niceties for editing Haml and Sass? Google searches only seem to point to a dead project on lucky-dip.net.
Note: it's Sass I'm ...
24
votes
4answers
18k views
twitter bootstrap navbar fixed top overlapping site
I am using bootstrap on my site and am having issues with the navbar fixed top. When I am just using the regular navbar, everything is fine. However, when i try to switch it to navbar fixed top, all ...
24
votes
9answers
9k views
Your attitude to Haml?
I'm considering Haml as a templating engine to use with PHP (via phammable).
Do you know any potential drawbacks to using it? Googling seems to glorify it too much, all that markup haiku thing.
23
votes
2answers
19k views
Ruby methods within Javascript within HAML
I have a jQuery script that adds a new field to a form, and this field contains dynamic information from an array. The problem is that I can't figure out how to add an array.each to populate the ...
22
votes
3answers
24k views
Contact form in ruby, sinatra, and haml
I'm new to all three, and I'm trying to write a simple contact form for a website. The code I have come up with is below, but I know there are some fundamental problems with it (due to my ...
21
votes
1answer
6k views
How do I make dynamic ids in Haml?
#item
creates a div with id="item"
.box#item
creates a div with class="box" and id="item"
.box#="item "+x
creates a div with class="box" and a comment '#="item"+x'
.box#
="item"+x
throws ...
19
votes
8answers
5k views
Can Haml be used in Java web apps?
I hear about Haml as a templating engine mostly in the Ruby world. Can it also be used in Java projects?
19
votes
4answers
8k views
How to generate Haml views instead of erb
I'm building an app with Rails 2.3.4 and using
script/generate controller home index
to generate a controller and home page. I've got Haml installed. I get an erb file:
...
18
votes
5answers
6k views
How to send back js.haml in rails
I have a rails create action which send back some jquery in a file:
create.js.erb
var appearance = $("<%= escape_javascript(render(:partial => @appearance)) %>").effect("highlight", {color: ...
18
votes
4answers
3k views
Ruby HAML with Django?
Ok, so I really love HAML. Particularly, I love the integration with RedCloth and BlueCloth, so I can use Markdown and Textile intermixed with my HAML.
I also love Python and Django.
So, I would ...
17
votes
5answers
17k views
How to overwrite styling in Twitter Bootstrap
How can I overwrite the stylings in Twitter Bootstrap? For instance, I am currently using a .sidebar class that has the CSS rule 'float: left;' How can I change this so that it goes to the right ...
17
votes
11answers
2k views
What would be some reasons to decide against HAML/SASS?
I've been reading up about HAML/SASS lately and I'm not quite sure why any one would not want to use it. It seems to be very easy to switch, makes things cleaner and more efficient.
Update:
What ...
17
votes
1answer
11k views
conditional haml - if else nesting
What I want is both whats in "if" and whats in "else" to include #main-block.
- if @transparency
#content-inner{:style => "background: url(../../../images/illustrations/" + @transparency + ") ...
16
votes
4answers
9k views
How to access instance variables in CoffeeScript engine inside a Slim template
I have a Rails controller in which I am setting a instance variable -
@user_name = "Some Username"
In my .slim template I am using coffee engine to generate javascript and want to print out the ...
16
votes
8answers
20k views
incompatible character encodings: ASCII-8BIT and UTF-8
I use Ruby 1.9.2 and Rails 3.0.5
I have the following error:
incompatible character encodings: ASCII-8BIT and UTF-8
It has nothing to do with the database i think.
The error is happinging on ...
16
votes
2answers
3k views
Is it worth to learn haml & sass?
In your professional experience have haml & sass proved to be useful? In which way?
16
votes
5answers
2k views
What is the best method for storing SASS generated CSS in your application and souce control?
If you are using HAML and SASS in your Rails application, then any templates you define in public/stylesheet/*.sass will be compiled into *.css stylesheets. From your code, you use stylesheet_link_tag ...
15
votes
5answers
5k views
New to rails: Which one do you suggest? And why? erb, haml or slim [closed]
I am learning Rails and I have seen these template engines. I have no experience with them (only erb).
But as I am a beginner, I am really confused. Which one do you suggest and why? Erb, Haml or ...
15
votes
2answers
3k views
“[ !IE]” conditional comments in Haml
In a HAML doc, I have:
/[if IE]
This is IE
/[if !IE]
This is not IE
The first conditional evaluates properly in IE (and presumably in Firefox and Chrome, as "This is IE" does not render in ...
15
votes
2answers
4k views
Using layouts in HAML files independently of Rails
My end goal is to create several static HTML files for hand-off to other folks.
But for my workflow, I'd like to have HAML as the basic source files. In doing so, I'd hope to DRY up the process at ...
15
votes
1answer
7k views
Injecting variable values into javascript and HAML in RoR
I have the following function for using ZenDesk. I'd like to inject my current_user details into the form as follows. (this is my from html.haml template). However I cannot figure out how to make ...
14
votes
3answers
4k views
HAML on Rails 3 doesn`t work
i have tried to render some files with HAML in Rails 3. But HAMl doesn`t work.
My testfiles have the extension .html.haml.
In the GEMFile i have written gem 'haml' and executed the bundle install
...
14
votes
4answers
4k views
haml by default
Is there a way to configure rails to use haml by default, i.e. when a scaffold is generated the according scaffold_name/index.html.haml is generated instead of scaffold_name/index.html.erb.
Similar ...
14
votes
1answer
2k views
Empty attribute with Ruby HAML
I'm implementing Schema microformats on a Ruby project using HAML and can't figure out how to set an empty attribute on a tag. I tried nil and false, but they simply do not shown.
Example: <div ...
13
votes
4answers
7k views
rendering a partial from a haml file
I have a simple sinatra app that uses haml and sass for the views. One of the views (located in the views folder) is a partial for my navigation menu. I am trying to render it from index.haml but I ...
13
votes
1answer
2k views
HAML with pre, how to remove unwanted intend?
I have problem with <pre>, here is my code, please check my screenshot attached, how to remove those indents?
%pre.code
:escaped
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
13
votes
3answers
4k views
Why does a rails app on heroku serve assets via all.css and locally via individual files
I'm a rails newbie, I've been trying to figure out what is going on with the stylesheets_link_tag on heroku.
If I use
= stylesheet_link_tag "style", :cache => true
heroku uses "all.css" and ...
13
votes
2answers
3k views
HAML: remove white space after “link_to”
The following code leaves a white space in HTML:
= link_to "Login", "#"
Normally, HAML allows to remove it by putting ">" at the end of the line, for example:
%input#query{:type => "text", ...
13
votes
1answer
715 views
HAML-Fixtures with jasmine
Is it possible to use haml-fixtures in conjunction with jasmine-jquery?
I'm not really satisfied with having to create a lot of static html-fixtures because all of my views are written in haml. So ...
12
votes
3answers
8k views
Append class if condition is true in Haml (with Rails)
If post.published?
.post
/ Post stuff
Otherwise
.post.gray
/ Post stuff
I've implemented this with rails helper and it seems ugly.
= content_tag :div, :class => "post" + (" gray" unless ...
12
votes
6answers
7k views
2 Spaces or 1 Tab, what's the standard for indentation in the Rails Community?
I've noticed that most of the HTML/XML/HAML that gets generated from plugins uses 2 spaces instead of 1 tab. I use textmate and have tabs set to 4 spaces for HAML/HTML/XML and 2 spaces for ...
12
votes
4answers
4k views
rails + compass: advantages vs using haml + blueprint directly
I've got some experience using haml (+sass) on rails projects. I recently started using them with blueprintcss - the only thing I did was transform blueprint.css into a sass file, and started coding ...
12
votes
3answers
11k views
how do I create a table using loops and haml with ruby?
I'm trying to make an html table that looks like this:
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
My data structure is like this: @f_ary = [ 1..250]
Here's my haml code:
%table{:border => "1"}
%tbody
...
12
votes
6answers
5k views
Even better support for HAML in Netbeans?
This plugin is pretty good, definitely better than plain-text.. but I'm longing for a little more. Code completion, the Netbeans code generator shortcuts, 'ri' integration for looking up documentation ...
12
votes
2answers
758 views
Rails HTTP streaming with HAML
There appears to be an issue with using HTTP streaming with HAML projects in rails. It works perfectly if I use ERB instead. Apparently, I'm not the only one with this problem.
It doesn't work with ...
11
votes
2answers
3k views
Does TextMate have an easy way to indent 2 spaces for an HAML file?
I look around for the preferences in TextMate and there seems to be no method to set the indent to 2 spaces when we highlight some code and choose
Text -> Shift Right
Right now it is indenting ...
11
votes
3answers
11k views
ERB vs HAML conversion of an if condition?
I am getting started with HAML and am working on my converting my first file.
The ostensibly correct omission of the "- end":
- if current_user
= link_to 'Edit Profile', ...
11
votes
2answers
2k views
HAML or Jade template syntax available for Python?
Are there any template engines for Python with a syntax similar to Jade or HAML?
11
votes
2answers
8k views
HAML - add type=text/css to <style> tag with :css filter
I'm trying to add some inline CSS in a HAML file. I thought that
%noscript
:css
.pagecontent {display:none;}
would produce:
<noscript>
<style type="text/css">
...
11
votes
2answers
7k views
Create a helper or something for haml with ruby on rails
I am using haml with my rails application and i have a question how the easiest way to insert this haml code into a html file:
<div clas="holder">
<div class=top"></div>
<div ...
11
votes
1answer
2k views
Rails 3.2 - haml vs. erb. Is haml faster? (february 2012)
I am working on a project and I am still thinking about using HAML (beautiful code, less size of view files) instead of classic ERB template.
My worries why I didn't do it yet are the speed of ...
11
votes
1answer
2k views
Coffeescript and Haml with unobtrusive Javascript (data-remote) in Rails 3.1
I searched le interwebs, but I haven't found someone experiencing the same problem as me, so I propose my question here.
I just started using Rails 3.1 with Compass, Haml and CoffeeScript and ran ...
11
votes
2answers
3k views
SASS Global Variables + Rails 3.1
I am using Rails 3.1RC4 with default SASS setup. I have the following files
application.css.scss
/*
* This is a manifest file that'll automatically include all the stylesheets available in this ...
