Skip to content

Instantly share code, notes, and snippets.

@moonglum
Created March 6, 2012 10:27
Show Gist options
  • Save moonglum/1985578 to your computer and use it in GitHub Desktop.
Save moonglum/1985578 to your computer and use it in GitHub Desktop.
Translator for Tobi
!!! 5
%head
%title I can haz chezburgerz plz?
%body
%h1
Hai
= bronie
require 'haml'
# read this var from yaml etc.
@translation = {
bronie: 'tobi',
java: 'java sucks'
}
template = File.read('./template.haml')
haml_engine = Haml::Engine.new(template)
output = haml_engine.render Object.new, @translation
puts output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment