You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
- require 'mustache'
-
- class Escaped < Mustache
- self.path = File.dirname(__FILE__)
-
- def title
- "Bear > Shark"
- end
- end
-
- if $0 == __FILE__
- puts Escaped.to_html
- end
|