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

1
vote
2answers
142 views

Sinatra & HAML: auto-escape/convert unsafe HTML characters for a whole template?

I've got a little sinatra app I'm using to run a basic website. The content for said site is being provided by a client, and most of it is coming out of PDFs. Since I'd rather not have to manually ...
1
vote
1answer
188 views

haml comment in Sublime Text 2

I downloaded the Textmate bundle for haml in Sublime Text 2 and did this (changing comment from / to correct -#): http://www.sublimetext.com/forum/viewtopic.php?f=4&t=3995 Well, now Ctrl+/ will ...
0
votes
1answer
133 views

Using HAML or Slim outside Ruby environment with Grunt?

I am a front-end developer who works with PHP developers mainly, lately I was thinking about using HAML or Slim to write the HTML templates I handle to them instead of Pure HTML. But I know that they ...
3
votes
1answer
111 views

Sub-headers in Tables: Accessibility and Templating

This is hard to explain, so here is a pen where all the examples can be seen. Which is better for accessibility? Option 1 <table> <thead> <tr> <th>Thing ...
1
vote
1answer
52 views

Manually requesting the HAML file

If I want to manually request a particular HAML file in Sinatra, it looks like this works: get '/' do haml_file = File.open('views/index.haml').read haml haml_file end My question is, do you ...
0
votes
0answers
31 views

How to exit prematurely in HAML?

In the middle of a HAML template, I want to just abort it and not compute anything more. :ruby exit This doesn't work and gives me a "SystemExit" error from Sinatra.
4
votes
1answer
68 views

HAML - a very weird indentation difference - bug?

This HAML %script{:type => "text/javascript"} :plain $(document).ready(function() { bar(); var foo = foo_func("#{}"); }); as expected gives this: <script ...
1
vote
0answers
61 views

Unicode characters in HAML/Sinatra/Passenger errors

If I put this into my HAML, :ruby foo = "2".asdf %p ss I get, as expected, this error from Sinatra: NoMethodError at / undefined method `asdf' for "2":String But when I have a UNICODE ...
2
votes
2answers
70 views

Why isn't this simple Ruby code working in HAML?

If I run this simple Ruby code regularly, it works fine: class String def add_two self + "2" end end puts "hello".add_two It prints "hello2" as it should. But this fails: :ruby class ...
1
vote
4answers
795 views

Bootstrap modal's data-dismiss on close modal not closing audio in mozila and IE

I am using bootstrap modal pop up for showing audio/videos attached in the project. On clicking the cancel button the modal should close and the audio should stop playing. This is working correctly in ...
0
votes
1answer
199 views

append and prepend with simple-form and bootstrap

I need to be able to use simple form input tag using a bootstrap append and prepend. I can do it with one easily but not getting them both to work. Is this possible. here is what I have using haml ...
0
votes
2answers
43 views

Why does HAML code usually use Ruby symbols (:http_equiv, :content) instead of plain strings (“http_equiv”, “content”)?

HAML code usually uses symbols, like this: %meta{:http_equiv=>"Content-Type", :content=>"text/html; charset=utf-8"} But why isn't it like this, using strings instead? ...
0
votes
2answers
76 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
87 views

jquery remove particular accordion class

This code runs fine in fiddle: You can expand/collapse all items and also expand/collapse individual items. Now I have added some logic in ruby (i cannot add that in jsfiddle) .accordion-body{id: ...
0
votes
1answer
54 views

concatenated i18n string with variabele in HAML

this is my code %ul.thumbnails %li.span3 %header %h2 = link_to t('homepage.house.link'), houses_path i have a variabele @country.name. How can i 'add/concatenated' this ...
1
vote
0answers
53 views

Conditional Top Level Tags HAML w/o using partials

What is an elegant way to conditionally add a higher level html element without repeating the inner contents? How can this be achieved without using partials (all content in one file)? For example, ...
1
vote
1answer
74 views

Rails: Form with conditional required field

I'm relatively new to RoR. I got the following source in haml = form.text_field :country, 'Country' = form.text_field :state, 'State', :placeholder => 'optional' but the :state filed is not ...
0
votes
1answer
79 views

jquery collapse all does not work when combined with HAML format

My Exapand All button works fine (collapses and expands) in the following jsfiddle. http://jsfiddle.net/HqXMN/6/ But the Expand all/Collapse all feature does not work when used in a HAML format.. I ...
0
votes
1answer
34 views

Using to_sentence with HAML and mongoid

I know this should be pretty simple, but I am new to ruby, haml, and rails. I want to display a list of the locations, for a specific lawyer. I want convert them `to_sentence' so there are commas ...
0
votes
1answer
79 views

Increase the width of div ignoring the width of container-parent (and use x scrollbar)

Let me explain with madskillz. The current status I'm doing a gallery which is formed by array of urls. Haml code: %section#content %form %fieldset #gallery %i.gallery_title ...
0
votes
2answers
49 views

how to get rid of bullet in haml ul

so here's an ul in haml that I have .content .testing .testing-ul2 %ul %li a b c .testing-ul2 %ul %li d ...
1
vote
3answers
94 views

boolean value in ruby on rails

I've declared some simple boolean field in my model/user.rb class User < ActiveRecord::Base attr_accessible :name, :has_car def init(age) if age > 18 has_car = true else has_car = ...
1
vote
1answer
32 views

creating a th tag in haml with an id that is a Ruby variable

I have a table in haml and I would like the id of a table header to be able to change according to a ruby variable @title_id. In pseudo-code, this is what I am trying to accomplish: %th.@title_id
0
votes
0answers
42 views

Setting color codes on middleman but is being read as a Comment or String. [closed]

I have this code On my layout.haml :css .caption { background-color: @title_color; } and on my /source/pages/index.html.haml I have, - @title_color = #000 But the output is ...
1
vote
1answer
41 views

I'm trying to do an 'each do' code that will generate my alt, src and title in the same line

Hi how do u achieve this one on Ruby HAML, I'm trying to do an 'each do' code that will generate my array collection of alt, src and title in the same line but I ran out of idea on how to do it. ...
0
votes
1answer
247 views

Buttons on the same line in twitter bootstrap

There are buttons and one button group %button.btn{type: :submit}button1 %button.btn{type: :submit}button2 %button.btn{type: :submit}button3 .btn-group{"data-toggle" => "buttons-radio"} ...
0
votes
2answers
143 views

Rails Haml form url parameter - how to make html form use the desired rails route

With the HAML code: %form{:action => "activate_foobar", :method => :post, :controller => "foobar", :url => activate_foobar_foobar_index_path} %input{:type => "submit", :value => ...
0
votes
2answers
105 views

How to write haml code for corresponding javascript?

Here is the haml that i have created out of html. But it doesn't seem to give any output. Please help me to find out the error. May be I am going somewhere wrong with the syntax or not getting what ...
0
votes
0answers
83 views

Rails : JST and HTML from HAML

We have an app that must serve templates in 2 ways, .html, for pages rendering on the server, and JST for client side rendering. All pages must have that capability. So, we want to write HAML files, ...
1
vote
2answers
136 views

Rails & Haml - Passing data to javascript

I am trying to pass data from my haml views to javascript. In my welcome controller I have index method. In my index.html.haml view file I have the below: :javascript window.putalert = "#{ "Data" ...
0
votes
1answer
52 views

Weird issue with i18n rails haml

I was looking into How to use rails-i18n with HAML to find out how i18n works together with haml but ran into an issue I can't figure out. This works: en.yml en: sitename: "Happy Sunday" ...
0
votes
0answers
53 views

rails haml collection_select with each

How can I use this haml view with each method. %li.string.required %label Coupon : = f.collection_select :coupon_id, DiscountCoupon.all, :id, :coupon_no, {:include_blank => true} My ...
0
votes
2answers
37 views

which code I should put into a partal in rails

Ideally the code which is reusable, that we can put into a septate partial and can call it from different actions. Now, if my parial _list.html.haml file has code #betting_list %table.table ...
1
vote
1answer
122 views

using middleman framework, can;t make this code work on my project. (generating navigation)

Hi guys, I can't seem to make this code work on my project. This is the code in my config.rb active_nav = {:class => "Active"} // Changed it to nav_active hoping it would work but it didn't. ...
0
votes
1answer
27 views

How to cache PHP code being called from the database?

I've got some pages (or "nodes" in Drupal parlance) that have the content of a PHP function which calls an external library to render a HAML template. These nodes (meaning the actual <?php ?> ...
0
votes
0answers
126 views

Object app/index.haml has no method forEach [closed]

I used yeoman-angularjs-haml - https://github.com/vlad/yeoman-angularjs-haml I installed needed module 'grunt-haml' sudo npm install grunt-haml I started yeoman server yeoman server and ...
0
votes
1answer
79 views

Haml “Illegal nesting” after extracting partial [closed]

Here is what works: %ol - if not retailer.approved? %li.pending = render partial: 'domain_request_form', locals: { retailer: retailer } - else %li.live shopa has verified ...
1
vote
0answers
53 views

Filter "coffee is not defined error in HAML 4

For some reason my deployed rails app is now giving me a: Haml::Error in Explore#index Filter "coffee" is not defined. ...after updating to latest version rails and latest haml 4. Locally, I do ...
0
votes
2answers
90 views

haml: how to nest elements within %a tag?

I would like to wrap an event div in a %a tag to make the whole clickable. This block: = link_to event_path(event.id) do .flipper .event-inner ... Compiles to: <div ...
1
vote
1answer
71 views

HAML + Bootstrap div.row and div.spanX, new row every N elements

I found this question, which has an answer which is exactly what I tried to start. However, it does not yield the intended results. Given array @items, I want to create a new row for every 3 items. ...
0
votes
1answer
91 views

HAML markdown rendering and showing ERB within

I have this in one of my HAML templates: :markdown #{render 'home.md'} and in home.md I have: There are **#{@photo_count}** photos. When viewing the site, it literally outputs that. How can I ...
0
votes
1answer
95 views

each_with_index not working correct

i want the first element of the each loop to be "active" and wrap it with a active css class. I tried this, but every item is active now. What a i doing wrong? #myCarousel.carousel.slide ...
0
votes
1answer
72 views

Haml: for whom is it? [closed]

In professional development different people make code for web applications and HTML for views. First are programmers and second are HTML markup developer with basic programming skills, but with good ...
0
votes
1answer
62 views

Sinatra image displaying issue

Here is parts of my view code (haml): %link{rel:'stylesheet', href:'/screen.css', type:'text/css', media:'screen'} %img{scr:'/tile.jpg'} The ./public folder contains files screen.css and tile.jpg ...
0
votes
2answers
38 views

Running a haml file

I have a rails app, that has a haml file in the view. I would like to see the haml file in the browser, what is the correct way of doing this? I have started up rails s using http://localhost:3000 ...
2
votes
2answers
49 views

How do I stay DRY with HAML?

I have HAML installed with Rails. I'm trying to extend the functionality of it by making snippet-templates. For example I have this general image structure: - @images.each do |image| .image %a{ ...
0
votes
2answers
80 views

How to render js using haml rails

I'm using haml and before i haven't any experience with haml. I'm fire ujs call whose code are below = link_to "this is the best",cast_vote_cast_votes_path(job_application.id),:id => ...
4
votes
1answer
236 views

Mthaml composer package with Laravel 4 - Howto?

Original: Has anyone figured out, or is there anyone interested in helping me figure out how to use haml with Laravel 4? Update: A fresh implementation of Laravel 4 using HAML(MtHaml) is being ...
1
vote
1answer
55 views

How to make the check box checked by default when using check_box_tag?

= form_tag movies_path, :id => 'ratings_form', :method => :get do Include: - @all_ratings.each do |rating| = rating - is_checked = (!@selected_ratings.nil? && ...
1
vote
1answer
27 views

Rails: Controller dumps data in view

I have a simple controller with def index having the following code: @companies = Company.all respond_to do |format| format.html end But in the view I get these errors appended after all the ...

1 2 3 4 5 33