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.

learn more… | top users | synonyms

0
votes
1answer
23 views

How to include the gem gon in a haml file

In need to put this into my .html.erb file to use gon: <%= include_gon %> Now what do I put into my .html.haml file that is the equivalent to this?
4
votes
1answer
404 views

Using Slim or HAML & Sass / SCSS with Node.js?

I have a rather robust project that has all of its templates implemented in Slim and a little HAML. I have been considering starting to push the project over to a Node.js based structure (probably ...
0
votes
0answers
70 views

Trying to delete a specific item from a backbone.js collection, using Haml modals.

Let me start by describing what I am trying to do. I currently have a piece of HAML code that I did not write and am trying to understand. I am currently trying to get a Backbone.js item (a document, ...
10
votes
2answers
2k views

Rails: Is it possible to write view helpers with HAML syntax?

During refactoring it would be quite handy just to copy part of HAML template and paste it to helper's code. Currently in such cases 1) I have to rewrite that part of view from scratch 2) I have to ...
9
votes
4answers
5k 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. ...
1
vote
1answer
47 views

'syntax error, unexpected keyword_ensure' on a line that doesn't exist

I'm getting the error: syntax error, unexpected keyword_ensure, expecting $end on a haml template I have, but the extracted source line number it's pulling out is past the end of the file. My code is: ...
0
votes
1answer
156 views

AngularJS render html as string

In my web app, when I go to one of my url, angularjs returns me haml template as a plain text. But if I go to my root url it works fine. I use Rails 3.2.13, AngularJS 1.1.4, Haml for views. This is ...
1
vote
2answers
38 views

How get variable value using HAML?

I have a little check in model: class Customers < ActiveRecord::Base def check_user_name(name, email) name = Customers.where(:name => name) email = Customers.where(:email => email) ...
0
votes
1answer
157 views

How do I display erb code inside haml img src?

<% data.programs.client_name.each_with_index do |c, i| %> %article .content %header .logo-wrap %img.client-logo{:src => "<%= ...
0
votes
0answers
28 views

validations not working when create triggered from outside view

I have the following in a view (user.html.haml) that is outside of the apps_controller and App model: #myModal.modal.hide.fade{"aria-hidden" => "true", "aria-labelledby" => "myModalLabel", ...
0
votes
4answers
93 views

Align input and button on one line

I have such table part: <td> <form accept-charset="UTF-8" action="/line_items" method="post"> <input class="qnt_to_cart2" id="110040Q" name="cart_quantity" ...
0
votes
1answer
46 views

Make a link active in HAML with current_page?

So i got this bad code (the link disappears when it's not the root path.): = link_to "News", root_path, class: "active" if current_page?(root_path) I would like to make the link's class .active ...
0
votes
1answer
51 views

How do you add an icon to link_to_unless_current using haml?

Is there a way to add an icon to the following link_to_unless_current? I need it to be added in both current and non-current states. = link_to_unless_current("Stats", ...
0
votes
1answer
70 views

HAML helper in Rails to create javascript:void(0) links

How can I define a helper for HAML in Rails to define links with href='javascript:void(0)'? i.e. a shorthand for this: %a.link#somelink(href="javascript:void(0)") Link to Foo Hopefully neater than ...
0
votes
1answer
56 views

Undefined Method 'captures' with Postmarkdown ruby gem

My rails app is not loading up for some reason index.html.haml where line #4 raised: undefined method `captures' for nil:NilClass my config/routes: postmarkdown :as => :blog root :to => ...
2
votes
1answer
85 views

CSS only shows correctly on index page. Ruby On Rails

I am new to Ruby On Rails and am trying to get a css template to work for a project. It works fine on my index page but on every other page it doesn't seem to be getting the complete layout from the ...
0
votes
2answers
52 views

Give a haml link an id

I have the following code, but how do i set it so that the link has an id tag of *"title_header"* like this <a href="/movies?sort=title" id="title_header">Movie Title</a> %th{:class ...
1
vote
2answers
89 views

How can I pass instance variables to a HAML template on the command line?

Background I'm trying to test the formatting of some HAML templates outside of Rails. The idea is to pass in some instance variables on the command line or via an included Ruby file, rendering the ...
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"> ...
2
votes
2answers
60 views

How do I multiply lines of Ruby code in Haml?

I want to return a HTML string value from Ruby block in Haml code: != my_helper_method 'some_div_id' do #{ <<-HTML %div %b ...
0
votes
0answers
22 views

dynamically set a class based on login ruby on rails

I have a CSS problem that I've been trying to figure out for awhile now and just can't seem to be able to figure it out. Maybe someone could help me? I have a div whose size I want to change based ...
-3
votes
1answer
51 views

Rails generates html, but it wont work [closed]

This one is really freaky and I'm sorry in advance if this is a basic question. What I'm trying to do is put a table header with a link to order the table by that column. I'm using Haml on Rails. This ...
0
votes
1answer
109 views

Infinite scrolling in rails with haml

I'm trying to implement infinite scrolling into my project. I have do everything as in this howto: https://github.com/amatsuda/kaminari/wiki/How-To:-Create-Infinite-Scrolling-with-jQuery But it's not ...
0
votes
1answer
24 views

Ruby doesn't get interpreted in a string

i got this code: = link_to main_app.dashboard_path(current_user), :class => 'class1 #{ is_active_link?("dashboard") }' do %p Dashboard Ya and is_active_link? doesn`t get executed. Why? It ...
46
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 ...
0
votes
1answer
92 views

Is placeholder supports IE 8?

I think IE 8 doesn't support placeholder, but when i load www.skydrive.com it comes with placeholder text as "someone@example.com & password" Is there any way to access placeholder without ...
0
votes
1answer
41 views

Nesting an each loop within an ERB rendered layout is not iterating over any elements

I have a common sublayout that I use on many pages in my application. To render it, I use render layout: ... and then put the rest of the view in the block: <%= render layout: ...
0
votes
1answer
56 views

In HAML w/Ruby, how do I 'loop' a repeating image in a single table column?

I have this HAML code for a table. %table %thead %th Job %th Uptime %tbody - @hw.each do |k,v| %tr %td=k %td - v.each do |z| - if z=="1" ...
0
votes
1answer
79 views

Rails 3: error while passing params to javascript function

I am trying to pass value to the JavaScript function but it gives me the below error on Firebug when I click the anchor tag (plus icon). What I am trying to do is, on click of a 'plus' sign, I add ...
0
votes
2answers
34 views

Ctags not generated for .haml and .less files

I am using ctags -R * to generate tags.But its not generating the tags for .haml and .less files. Is there a separate option to generate tags for these files?
0
votes
1answer
73 views

Empty item at end of .each loop because of rails cycle method

I have this list that should show all activities inside a category, and it sort of works but the last element that is displayed is strange. There are 4 activities in the DB for this particular ...
0
votes
1answer
72 views

vim: php syntax highlighting in HAML with :php filter [closed]

I'm using the :php HAML filter that is supplied with haml-contrib to write blocks of php code inside a haml file. this allows me to write: !!! 5 %html %body -# HAML code ... :php ...
0
votes
1answer
790 views

Using AngularJS within Haml views of a Rails app

I have a Rails app with Haml views. Now I want to add AngularJS to some parts of the application, but the problem is that the Haml views are rendered server-side and the AngularJS code is not working, ...
0
votes
1answer
32 views

Conditions in the view?

This is a part of my layout: .container .brand = render 'layouts/nav' .row - flash.each do |key, msg| = content_tag :p, msg, :class => "flash #{key}" = yield The _nav ...
0
votes
1answer
11 views

Can the high_voltage gem handle .haml.html files?

The documentation doesn't mention haml, and I couldn't find the answer by googling. Has anyone gotten this to work?
0
votes
1answer
148 views

Jquery Mobile add label to radio buttons controlgroup

I have a form, with four radio buttons, and i can't figure out how to add a label to that radio buttons, something like this LABEL ........ Radio1Radio2Radio3Radio4 The radio buttons code: ...
0
votes
2answers
83 views

Using I18n markdown strings in HAML

I have localised markdown strings in my language file, and I am looking for a cleaner way to do the following in HAML: #text_for_something :markdown #{ t(:text_in_markown) } Or, equivalently: ...
1
vote
1answer
60 views

Rails: DRYer way to create haml layout

I'm new to rails and have been working on this for hours. I have finally gotten it to work but I feel like my solution is a bit hacky and not at all DRY. I have a layout that requires a new div for ...
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?
1
vote
1answer
148 views

How to configure Haml's :markdown filter to use Redcarpet with options?

I'm using Rails 3.2.11, Haml 4.0 and Redcarpet 2.2.2. I would like to configure Haml's :markdown filter to use Redcarpet with with_toc_data: true. In ApplicationHelper I tried defining: def ...
0
votes
1answer
42 views

running load_class on mthaml

I'm trying to use load_class to load mthaml as I understood it's necessary for performance reasons. This is the MtHaml library. https://github.com/arnaud-lb/MtHaml It's namespaced everywhere so ...
0
votes
1answer
41 views

Automatic generation of HAML from HTML in SublimeText 2?

I would like to have SublimeText show the HTML result of parsing my HAML in another window, live, as I type the HAML. Does anyone have an idea of how to make this happen? In, e.g., WebStorm there are ...
1
vote
1answer
30 views

mthaml Illegal nesting: nesting within echo is illegal

I need to execute the following haml = form_open('login', array('method' => 'POST')) %p %label{:for => "password"} Password = form_input($login_password) %p ...
0
votes
1answer
37 views

Why are my HAML named routes empty?

I'm trying to create some pages in HAML, which are partly working. The HTML that it produces is correct, apart from one thing. Where I have: %ul#menu %li = link_to 'Home', root_url I am ...
0
votes
0answers
87 views

haml-rails doesn't work in production

I've been working for the last two days (not long enough, it seems) to getting haml-rails to work with this RoR application. The backtrace I'm getting is this: ActionView::MissingTemplate (Missing ...
0
votes
0answers
44 views

Sinatra weather displaying application

I am trying to build a simple weather application. My application is made in Ruby, Sinatra, HAML and CSS. I use the yahoo weatherman gem to get weather data (temp, description, etc). Now I'm looking ...
0
votes
1answer
65 views

Adding icons to simple_forms hints

I need to add custom html to hint and error elements that are generated by simple_form. Preferably I would like to customise it via config file. Generated html looks like this span.error Some error ...
5
votes
4answers
5k views

inline tag in haml

In html, you can do something like this <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent eget aliquet odio. Fusce id quam eu augue sollicitudin imperdiet eu ac eros. ...
19
votes
5answers
18k 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 ...
1
vote
2answers
149 views

HAML submit form in rails link_to

I have a small search form written in HAML in my rails application, here is the code: = search_form_for @q do |f| .field = f.label :first_name_cont, "Name Contains" = f.text_field ...

1 2 3 4 5 34