Skip to content

Instantly share code, notes, and snippets.

@jamieowen
Created March 17, 2012 18:14
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jamieowen/2063748 to your computer and use it in GitHub Desktop.
Save jamieowen/2063748 to your computer and use it in GitHub Desktop.
Octopress Youtube plugin...
module Jekyll
class Youtube < Liquid::Tag
@width = 640
@height = 390
def initialize(name, id, tokens)
super
@id = id
end
def render(context)
%(<iframe width="#{@width}" height="#{@height}" src="http://www.youtube.com/embed/#{@id}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>)
end
end
end
Liquid::Template.register_tag('youtube', Jekyll::Youtube)
@jm3
Copy link

jm3 commented Apr 20, 2012

hey, thanks for this! i just used the youtube plugin on this blog post for great hilarity!

@jamieowen
Copy link
Author

no problem. nice post!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment