Skip to content

Instantly share code, notes, and snippets.

@dan-passaro
Created January 28, 2016 21:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dan-passaro/46c72b061e46761e1730 to your computer and use it in GitHub Desktop.
Save dan-passaro/46c72b061e46761e1730 to your computer and use it in GitHub Desktop.
$ cat irc.rb
require 'haml'
template = <<EOF
- if false
%p In the if
- else
%p In the else
EOF
puts Haml::Engine.new(template).render
$ ruby irc.rb
<p>In the else</p>
$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment