1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/hamlit/utils.rb
2015-11-28 03:39:09 +09:00

9 lines
157 B
Ruby

require 'hamlit/hamlit'
module Hamlit
module Utils
def self.escape_html_safe(html)
html.html_safe? ? html : escape_html(html)
end
end
end