Method: Tenon::ApplicationHelper#html
- Defined in:
- app/helpers/tenon/application_helper.rb
#html(options = {}, &blk) ⇒ Object
66 67 68 69 70 71 72 73 74 |
# File 'app/helpers/tenon/application_helper.rb', line 66 def html( = {}, &blk) .recursive_symbolize_keys! open = h5bp_opening_tag([:ie_versions]) body = capture_haml(&blk) close = '</html>'.html_safe open + body + close end |