Browse Source

Decode HTML entities in POI titles

master
Adrian Short 12 years ago
parent
commit
92af4bd772
1 changed files with 6 additions and 3 deletions
  1. +6
    -3
      app/helpers/posts_helper.rb

+ 6
- 3
app/helpers/posts_helper.rb View File

@@ -12,7 +12,7 @@ module PostsHelper
}
},
:text => {
:title => post.title,
:title => decode_entities(post.title),
:description => clean_description(post.summary),
:footnote => "From #{post.feed.title}"
},
@@ -28,12 +28,15 @@ module PostsHelper
}
end
def decode_entities(s)
HTMLEntities.new.decode s
end
def clean_description(s)
if s.size > 137
s = s[0..136] + '...'
end
coder = HTMLEntities.new
coder.decode(s.gsub(/<.+?>/, ''))
decode_entities(s.gsub(/<.+?>/, ''))
end
end

Loading…
Cancel
Save