Last active
November 16, 2016 20:07
-
-
Save jkeyes/ff1979ee60f32422de83 to your computer and use it in GitHub Desktop.
ResponsiveEmbedConverter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; height: auto; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style> | |
<div class='embed-container'> | |
<iframe src='{{ scheme }}://player.vimeo.com/video/{{ video_id }}' frameborder='0' webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; height: auto; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style> | |
<div class='embed-container'> | |
<iframe src='http://www.youtube.com/embed/{{video_id}}/' frameborder='0' allowfullscreen></iframe> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'cgi' | |
require 'uri' | |
module Jekyll | |
class ResponsiveEmbedConverter < Converter | |
safe true | |
priority :highest | |
@@domains = %w(youtube.com vimeo.com) | |
def matches(ext) | |
ext =~ /^\.md$/i | |
end | |
def output_ext(ext) | |
".html" | |
end | |
def interesting_domain(href) | |
@@domains.any? { |s| href.include?(s) } | |
end | |
def interesting_url(href) | |
interesting_domain(href) && href.include?('jekyll_embed') | |
end | |
def get_embed_markup(url, params) | |
# the URL has a jekyll_embed GET paramter | |
if url.host.include?('youtube.com') | |
# get the YouTube iframe | |
layout = Liquid::Template.parse( | |
File.new(File.join("_includes", "_youtube.html")).read) | |
embed = layout.render({'video_id' => params['v']}) | |
elsif url.host.include?('vimeo.com') | |
# get the Vimeo iframe | |
layout = Liquid::Template.parse( | |
File.new(File.join("_includes", "_vimeo.html")).read) | |
embed = layout.render({ | |
'video_id' => url.path[1..-1], | |
'scheme' => url.scheme | |
}) | |
end | |
end | |
def convert(content) | |
re = %r{(\[.*\])\((http.*)\)} | |
m = content.scan re | |
m.each do |match| | |
href = match[1] | |
if href and interesting_url(href) | |
url = URI(href) | |
params = CGI.parse(url.query) | |
if params.key?('jekyll_embed') | |
embed = get_embed_markup(url, params) | |
# if we have some embed markup replace the Markdown link with it | |
if embed | |
content = content.gsub("#{match[0]}(#{match[1]})", embed) | |
end | |
end | |
end | |
end | |
content | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment