Merge pull request #941 from krautcomputing/fix_content_tag_helper
Fix content_tag helper, only try to mark content as safe if it is not a hash of options
This commit is contained in:
commit
298e842510
|
@ -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