diff --git a/app/helpers/repositories_helper.rb b/app/helpers/repositories_helper.rb
index 85bcb485e..703277adb 100644
--- a/app/helpers/repositories_helper.rb
+++ b/app/helpers/repositories_helper.rb
@@ -37,9 +37,9 @@ module RepositoriesHelper
unless properties.nil? || properties.empty?
content = ''
properties.keys.sort.each do |property|
- content << content_tag('li', "#{h property}: #{h properties[property]}")
+ content << content_tag('li', "#{h property}: #{h properties[property]}".html_safe)
end
- content_tag('ul', content, :class => 'properties')
+ content_tag('ul', content.html_safe, :class => 'properties')
end
end