class Haml::HTML
Constants
- DEPRECATED_FORMATS
Public Class Methods
Source
# File lib/haml/html.rb, line 6 def initialize(opts = {}) if DEPRECATED_FORMATS.include?(opts[:format]) opts = opts.dup opts[:format] = :html end super(opts) end
Calls superclass method
Public Instance Methods
Source
# File lib/haml/html.rb, line 15 def on_html_condcomment(condition, content, revealed = false) on_html_comment [:multi, [:static, "[#{condition}]>#{'<!-->' if revealed}"], content, [:static, "#{'<!--' if revealed}<![endif]"]] end
This dispatcher supports Haml’s “revealed” conditional comment.