mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Fix content_tag helper, only try to mark content as safe if it is not a hash of options
This commit is contained in:
parent
0e69928939
commit
c75e31ae94
1 changed files with 2 additions and 1 deletions
|
@ -50,7 +50,8 @@ class Middleman::CoreExtensions::DefaultHelpers < ::Middleman::Extension
|
|||
|
||||
# Make all block content html_safe
|
||||
def content_tag(name, content = nil, options = nil, &block)
|
||||
mark_safe(super(name, mark_safe(content), options, &block))
|
||||
content = mark_safe(content) unless content.is_a?(Hash)
|
||||
mark_safe(super(name, content, options, &block))
|
||||
end
|
||||
|
||||
def capture_html(*args, &block)
|
||||
|
|
Loading…
Reference in a new issue