10000 GitHub - ikeji/jekyll-oembed: OEmbed Liquid Tag gem for Jekyll
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ikeji/jekyll-oembed

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jekyll-oembed

oEm 7BB5 bed plugin for jekyll that creates an oembed liquid tag

Installation

With bundler

Within your project's Gemfile, add the following within the :jekyll_plugins group:

# Gemfile
group :jekyll_plugins do
  gem 'jekyll_oembed'
end

Standalone

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"

Usage

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.

Limitations

Protected URLs: some URLs are private. If this is the case, oembed may not function properly

Attribution

Thank you to:

This will automatically require all of the gems specified in your Gemfile.

Resources

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

OEmbed Liquid Tag gem for Jekyll

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%
0