Tagged Questions
1
vote
2answers
89 views
How do I add hamstache to Ack searches?
Ack isn't searching my .hamstache files. How do I get it included in searches?
My .ackrc file looks like this:
--type-add
ruby=haml
--type-add
ruby=slim
--type-add
js=.coffee
--type-set
...
1
vote
1answer
581 views
Haml + Mustache
I'm trying to create a blog with Haml + Mustache, but the field 'description' has a CKEditor, thus the field always contains html tags, but the Mustache doesn't render as html even putting ...
2
votes
1answer
540 views
Sharing templates beetween JS and Rails using Haml + Mustache
I am trying to make common templates that used both by Rails and the client side, ie in coffescript.
I use hogan_assets and haml_assets to export templates to JS. However I can't find a way to use ...
3
votes
1answer
444 views
Is it a good idea to mix Moustache/Handlebars Templating with HAML?
I would like to know if it's a good idea to mix Moustache or Handlebars templating with HAML. If yes, what would be the benefits and disadvantages. Why I am asking this? I have seen brogrammers mixing ...
2
votes
1answer
682 views
_foo.mustache.haml templates
I would like to use a single haml/mustache template, like this:
.foo
%h2 {{title}}
That I can render two ways:
1) As a partial and passing a hash:
render :partial => 'foo', :mustache => ...
4
votes
1answer
1k views
Mustache and Haml
I have got this haml/mustache template:
{{#data}}
ok
{{#items}}
{{#item}}
%b ID: {{id}}
{{/item}}
{{/items}}
{{/data}}
And I have got Illegal nesting: nesting within plain text ...
8
votes
1answer
698 views
Handlebars inside of Markdown, inside of HAML
I know that this is a very non-standard use case, but I'm chaining HAML, Markdown, and Handlebars (in SproutCore 2.0), and I'm 1 step away from 'beautiful' code. Intermingling HAML, Markdown, and ...
6
votes
3answers
607 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 ...