Fix double-escaping of resource properties
This commit is contained in:
parent
bef6e13c5f
commit
fffe36f42c
|
@ -23,10 +23,10 @@ module Middleman
|
||||||
row_content = ""
|
row_content = ""
|
||||||
row_content << content_tag(:th, label)
|
row_content << content_tag(:th, label)
|
||||||
row_content << content_tag(:td, value)
|
row_content << content_tag(:td, value)
|
||||||
row_content
|
row_content.html_safe
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
content
|
content.html_safe
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue