Skip to content

Simple image resizing filter for Jekyll 3 and 4 🖼 🤏 🔬

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE-source
Notifications You must be signed in to change notification settings

MichaelCurrin/jekyll-resize

Repository files navigation

Jekyll Resize 🖼 🤏 🔬

Simple image resizing filter for Jekyll 3 and 4

GitHub tag License

Made with Ruby Jekyll

Sample usage

Add the plugin gem to your Gemfile as below, then install it with Bundler.

group :jekyll_plugins do
  gem "jekyll-resize", git: "https://github.com/MichaelCurrin/jekyll-resize"
end

The resize filter will be available in Liquid (in your Markdown and HTML) so you can use it for a JPEG or PNG file.

Here we resize an image to max width and max height of 800 pixels:

{{ "my-image.png" | resize: "800x800>" }}

That takes care of:

  • generating the reduced image.
  • providing a link to the file.

See the docs linked below for a more detailed example using the filter with an HTML img tag.

Documentation

Why you should use this plugin and how to install and use it in a Jekyll project

View - Documentation

Contributing

See Contributing doc.

License

Released under MIT by @MichaelCurrin.

Original license - MIT.

See Fork notes for more details and a list of improvements this fork provides.