mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
9 lines
157 B
Ruby
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
|