Fix double-escaping of resource properties

This commit is contained in:
Aggelos Orfanakos 2013-07-12 22:54:15 +03:00
parent bef6e13c5f
commit fffe36f42c

View file

@ -23,10 +23,10 @@ module Middleman
row_content = ""
row_content << content_tag(:th, label)
row_content << content_tag(:td, value)
row_content
row_content.html_safe
end
end
content
content.html_safe
end
end
end