Tagged Questions

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 on Ramaze.

learn more… | top users | synonyms

37
votes
7answers
9k 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 ...
34
votes
7answers
10k 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 ...
28
votes
7answers
20k 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 ...
23
votes
8answers
5k 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 ...
17
votes
4answers
2k 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 ...
16
votes
6answers
5k 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 ...
16
votes
12answers
1k 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 ...
15
votes
7answers
5k 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.
14
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 ...
13
votes
4answers
3k 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: ...
12
votes
3answers
7k 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 ...
11
votes
7answers
3k 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?
10
votes
2answers
1k views

Is it worth to learn haml & sass?

In your professional experience have haml & sass proved to be useful? In which way?
10
votes
3answers
3k 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 ...
9
votes
1answer
296 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 ...
9
votes
3answers
11k 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 ...
9
votes
4answers
2k 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: ...
9
votes
6answers
4k 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 ...
9
votes
1answer
7k 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
8
votes
1answer
345 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 ...
8
votes
4answers
3k 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 ...
8
votes
1answer
5k 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 + ") ...
8
votes
3answers
6k 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', ...
8
votes
3answers
6k 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?
8
votes
1answer
998 views

What are the main differences between HAML, SASS/Compass and ERB?

I'm looking for a templating engine. What are the important factors to consider when choosing among HAML, SASS/Compass and ERB?
7
votes
2answers
754 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", ...
7
votes
1answer
1k views

HAML - style block helpers are deprecated

I have the following view that used to render without any warnings: #listing -if flash[:notice] .success =flash[:notice] .input-container -form_for @user do |f| =f.error_messages =render ...
7
votes
2answers
5k 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 ...
7
votes
2answers
3k views

Haml/Sass Syntax Highlighting in Notepad++?

Has anybody made this yet?
6
votes
2answers
1k 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 ...
6
votes
1answer
693 views

How can I get Haml to render the contents of a pre tag correctly?

I read the Haml docs where they talk about the pre tag and "preserving whitespace". According to the docs, pre "preserves whitespace" by default and you need to use the ~ operator to output the ...
5
votes
1answer
94 views

Choose Mako preprocessor based on file extension?

I would like to somehow instrument a mako.lookup.TemplateLookup such that it applies certain preprocessors only for certain file extensions. Specifically, I have a haml.preprocessor that I would like ...
5
votes
1answer
274 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 ...
5
votes
1answer
125 views

JHAML and play framework?

Does anyone have any experience combining these two together? JHAML is a Java implementation of HAML. I'm starting to like HAML a lot and it would be great if it could be used with Play. Any ...
5
votes
1answer
148 views

Rails Aptana 3 Go to Haml View Shortcut

I am using Aptana as my Rails text editor. When I am in a controller action "new for example" and I want to navigate to the view "new.html.erb" I press "Alt+ctr+shift+down" then I can navigate to the ...
5
votes
1answer
197 views

Symbols near HAML expressions

In HAML I often want to use a tag with punctuation following immediately after the tag. For example, I might want to put something in bold but have a closing bracket. The formatting would look like ...
5
votes
1answer
669 views

Benchmarking HAML vs JADE vs HTML in PHP?

I'm interested in the performance of templating languages in PHP. I've been watching node.js tutorials and am really impressed by the use of JADE (http://jade-lang.com). I see that JADE can be used ...
5
votes
6answers
616 views

Browser compatible NodeJS templating

I am looking to reuse templates I write for NodeJS in the browser, by this I hope to gain fast page loading time (initial rendering), and dynamic content switching ability, etc... This would be most ...
5
votes
2answers
2k 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 ...
5
votes
2answers
846 views

Partial HAML templating in Ruby without Rails

I really don’t need the overhead of Rails for my very small project, so I’m trying to achieve this just using just plain Ruby and HAML. I want to include another HAML file inside my HAML template. ...
5
votes
5answers
159 views

How can I do to write “Text” just once and in the same time check if the path_info includes 'A'?

- if !request.path_info.include? 'A' %{:id => 'A'} "Text" - else "Text" "Text" is written twice. How can I do to write it just once and in the same time check if the path_info includes ...
5
votes
3answers
300 views

Which interoperable templating framework for JavaScript and Grails/Java?

I am currently researching templating frameworks that have implementations for both JavaScript and Grails/Java for an upcoming project that will render templates both within a Grails application and ...
5
votes
3answers
805 views

br tag not closing in Haml on Rails 3

I am having a problem getting Haml to close br tags. I have tried the following with no luck: %br %br/ I expect this to result in <br />, but it always outputs as <br>, even with the ...
5
votes
3answers
2k 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 ...
5
votes
2answers
511 views

Add Javascript syntax highlighting to the HAML TM Bundle

I have the HAML TextMate bundle and inside of the :javascript block, I'd like to have proper javascript syntax highlighting. How could I modify the HAML bundle to do this?
5
votes
2answers
1k views

Using Rails 3 and Haml 3, how do I configure Haml?

I'm using Rails 3.0.0.beta3 and Haml 3.0.0.rc.2, and I can't find where I need to place the configuration lines for Haml (nor what they are in the new version, for that matter). Using Rails 2.3.5 and ...
5
votes
2answers
1k views

Having problems using haml and rails3

After installing rails3, I'm experiencing problems when trying to use haml with it. I have the updated gem installed, and after rails PROJECT_NAME , I did haml --rails in its root. It apparently had ...
5
votes
3answers
1k views

Elastic css framework with rails 3 and haml/sass?

I recently stumbled upon "elastic css" framework, which looks like a good thing to me. I tried blueprint already but I must say this seems to be an overkill for me (tried it with compass). So my ...
5
votes
4answers
3k views

Rails: App Templates / script generators with HAML?

Is there any way to create an app template in Rails that generates the views in HAML rather than ERB? App Templates: http://railscasts.com/episodes/148-app-templates-in-rails-2-3 If not, are there ...
5
votes
1answer
884 views

Library for making static websites with HAML/SASS/CSS framework

I'm looking for a library or a collection of libraries that work together with the following requirements: HAML and SASS can be used. Have a small server capability to see HAML/SASS compiled every ...

1 2 3 4 5 15