Method: Tenon::ApplicationHelper#html
- Defined in:
- app/helpers/tenon/application_helper.rb
#html(options = {}, &blk) ⇒ Object
53 54 55 56 57 58 59 60 61 |
# File 'app/helpers/tenon/application_helper.rb', line 53 def html( = {}, &blk) .recursive_symbolize_keys! open = h5bp_opening_tag([:ie_versions]) body = capture_haml(&blk) close = '</html>'.html_safe open + body + close end |