oEmbed plugin for jekyll that creates an oembed
liquid tag
Within your project's Gemfile
, add the following within the :jekyll_plugins
group:
# Gemfile
group :jekyll_plugins do
gem 'jekyll_oembed'
end
Add the code directly to your _plugins
directory
Create the following plugin in your projects _plugins directory.
If you do this, you will also need to add ruby-oembed
to your Gemfile
# Gemfile
gem "ruby-oembed"
To use an oembed, simply do the following. Pass the embedded url as plain text, not wrapped in quotes like a string.
# Correct
{% oembed https://www.youtube.com/watch?v=GPUaUgjbbsA %}
# Incorrect
{% oembed "https://www.youtube.com/watch?v=GPUaUgjbbsA" %}
jekyll_oembed
does not support customizing width, height, or adding any attributes directly to the embedded HTML.
Protected URLs: some URLs are private. If this is the case, oembed may not function properly
Thank you to:
This will automatically require all of the gems specified in your Gemfile.
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)git push origin my-new-feature
)