What to name a SLIM file? .slim? .html.slim?

html, ruby-on-rails, slim-lang

Solution

filename.html.slim

However, in the generic sense, it is

filename.response_type.rendering_engine

e.g.

index.xml.haml
index.rss.slim

Problem

Sorry for such a silly question, but couldn't find it on the docs: filename.slim filename.html.slim This seems like a really great language to work with. I've used `HAML` before, so I think this will be a fairly nice transition.

Original source