FIX: Strip lightbox metadata from embedding comments

This commit is contained in:
Robin Ward 2015-08-21 15:22:33 -04:00
parent 6d4c07385f
commit be17b3e04f
1 changed files with 6 additions and 0 deletions

View File

@ -16,12 +16,14 @@ module EmbedHelper
def get_html(cooked)
fragment = Nokogiri::HTML.fragment(cooked)
# convert lazyYT div to link
fragment.css('div.lazyYT').each do |yt_div|
youtube_id = yt_div["data-youtube-id"]
youtube_link = "https://www.youtube.com/watch?v=#{youtube_id}"
yt_div.replace "<p><a href='#{youtube_link}'>#{youtube_link}</a></p>"
end
# convert Vimeo iframe to link
fragment.css('iframe').each do |iframe|
if iframe['src'] =~ /player.vimeo.com/
@ -29,6 +31,10 @@ module EmbedHelper
iframe.replace "<p><a href='https://vimeo.com/#{vimeo_id}'>https://vimeo.com/#{vimeo_id}</a></p>"
end
end
# Strip lightbox metadata
fragment.css('.lightbox-wrapper .meta').remove
raw fragment
end
end