Project

jekyll_img

0.0
There's a lot of open issues
Provides a Jekyll tag that generates images.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

jekyll_img Gem Version

Jekyll_img is a Jekyll plugin that embeds images in HTML documents, with alignment options, flexible resizing, default styling, overridable styling, an optional caption, an optional URL, and optional fullscreen zoom on mouseover.

Muliple image formats are supported for each image. The user’s web browser determines the formats which it will accept. The most desirable formats that the web browser supports are prioritized.

I explain why the webp image format is important in Converting All Images in a Website to webp Format. That article also provides 2 bash scripts for converting existing images to and from webp format.

For example, if an image is encloded in webp, png and gif filetypes, and the user’s web browser is relatively recent, then webp format will give the fastest transmission and look best. Older browsers, which might not support webp format, would give best results for png format. Really old web browsers would only support the gif file type.

Please read the next section for details.

See demo/index.html for examples.

Image Fallback

This plugin provides support for many image formats, fallbacks to less performant formats by using the HTML picture element.

This means that at least one version of every image are required.

You could specify the desired image with a webp filetype, or you could specify no filetype. The plugin would generate a picture element that contains a primary source sub-element that specifies the given image URL, and secondary img sub-element with all other supported filetypes.

For example, these two invocations yield the same result:

{% img src="blah" %}
{% img src="blah.webp" %}

The above generates the following (to support the other options, the generated HTML can be a lot more complex):

<picture>
  <source srcset="blah.svg" type="image/svg" />
  <source srcset="blah.webp" type="image/webp" />
  <source srcset="blah.apng" type="image/apng">
  <source srcset="blah.png" type="image/png">
  <source srcset="blah.jpg" type="image/jpeg">
  <source srcset="blah.jpeg" type="image/jpeg">
  <source srcset="blah.jfif" type="image/jpeg">
  <source srcset="blah.pjpeg" type="image/jpeg">
  <source srcset="blah.pjp" type="image/jpeg">
  <source srcset="blah.gif" type="image/gif">
  <source srcset="blah.tif" type="image/tiff">
  <source srcset="blah.tiff" type="image/tiff">
  <source srcset="blah.bmp" type="image/bmp">
  <source srcset="blah.ico" type="image/x-icon">
  <source srcset="blah.cur" type="image/x-icon">
  <img src="blah.png" />
</picture>

If both blah.webp and blah.png were available, the above would fetch and display blah.webp if the web browser supported webp format, otherwise it would fetch and display blah.png.

Supported Filetypes

The following are listed in order of priority. See MDN for more information.

Filetype MIME type
svg image/svg+xml
avif image/avif
webp image/webp
apng image/apng
png image/png
jpg, jpeg, jfif, pjpeg, pjp image/jpeg
gif image/gif
tif, tiff image/tiff
bmp image/bmp
ico, cur image/x-icon

Because avif is problematic as of 2024-01-08 on Firefox, Chrome and Safari, it is not supported yet.

Demo

Run the demo website by typing:

$ demo/_bin/debug -r

... and point your web browser to http://localhost:4444

Usage

{% img [Options] src='path' %}

Options are:

  • attribution See jekyll_plugin_support.
  • align="left|inline|right|center" Default value is inline
  • alt="Alt text" Default value is the caption text, if provided
  • caption="A caption" No default value
  • classes="class1 class2 classN" Extra <img> classes; default is rounded shadow
  • id="someId" No default value
  • nofollow Generates rel='nofollow'; only applicable when url is specified
  • size='eighthsize|fullsize|halfsize|initial|quartersize|XXXYY|XXX%' Defines width of image.
    • initial is the default behavior.
    • eighthsize, fullsize, halfsize, and quartersize are relative to the enclosing tag's width.
    • CSS units can also be used, for those cases XXX is a float and YY is unit (see below)
  • style='css goes here' CSS style for <img>; no default
  • target='none|whatever' Only applicable when url is specified; default value is _blank
  • title="A title" Default value is caption text, if provided
  • url='https://domain.com' No default value
  • wrapper_class='class1 class2 classN' Extra CSS classes for wrapper <div>; no default value
  • wrapper_style='background-color: black;' CSS style for wrapper <div>; no default value
  • zoom Fullscreen zoom on mouseover; presse escape or click outside image to dismiss

unit is one of: Q, ch, cm, em, dvh, dvw, ex, in, lh, lvh, lvw, mm, pc, px, pt, rem, rlh, svh, svw, vb, vh, vi, vmax, vmin, or vw.

CSS classes referenced by the jekyll_img plugin are in demo/assets/css/jekyll_img.css and demo/assets/css/jekyll_plugin_support.css. CSS marker classes are included, so CSS selectors can be used for additional styling.

Configuration

By default, errors cause Jekyll to abort. You can allow Jekyll to halt by setting the following in _config.yml:

jekyll_img:
  die_on_img_error: true
  pry_on_img_error: true

Design

The most significant design issue was the decision that image size and formatting should not change whether it had a caption. HTML captions exist within a <figure /> element, which also surrounds the image.

I also wanted to ensure that captions would wrap text under an image, and would not be wider than the image they were associated with.

CSS behavior differs for <figure /> and <img />. For example, centering, floating right and left. That means the CSS and where it would need to be applied are completely different for naked <img /> and <figure /> tags. Handling all possible situations of these two scenarios would significantly raise the complexity of the plugin code. I know, because I went down that rabbit hole.

Wrapper <div />

To make the plugin code more manageable, the plugin always encloses the generated HTML & CSS within a wrapper <div />. The wrapper allows for a simple, consistent approach regardless of whether a caption is generated or not.

The wrapper width is identical to the displayed image width. Within the wrapper <div />, the embedded <img /> is displayed with width=100%. If a caption is required, the generated <figure /> only makes the space taken by the generated HTML longer; the image’s width and height are not affected.

The wrapper will not exceed the width of the tag that encloses it if the size parameter has values eighthsize, fullsize, halfsize, initial or quartersize.

The wrapper's width can be defined independently of its enclosing tag by using CSS units for the size parameter: Q, ch, cm, em, dvh, dvw, ex, in, lh, lvh, lvw, mm, pc, px, pt, rem, rlh, svh, svw, vb, vh, vi, vmax, vmin, or vw. Using CSS units means that large enough values could cause the image to exceed the width of its enclosing tag.

Installation

Add this line to your Jekyll project's Gemfile, within the jekyll_plugins group:

group :jekyll_plugins do
  gem 'jekyll_img'
end

And then execute:

$ bundle

Additional Information

More information is available on Mike Slinn’s website.

Development

After checking out the repo, run bin/setup to install dependencies.

You can also run bin/console for an interactive prompt that will allow you to experiment.

To build and install this gem onto your local machine, run:

$ bundle exec rake install
jekyll_img 0.1.0 built to pkg/jekyll_img-0.1.0.gem.
jekyll_img (0.1.0) installed.

Examine the newly built gem:

$ gem info jekyll_img

*** LOCAL GEMS ***

jekyll_img (0.1.0)
    Author: Mike Slinn
    Homepage:
    https://github.com/mslinn/jekyll_img
    License: MIT
    Installed at: /home/mslinn/.gems

    Generates Jekyll logger with colored output.

Debugging

You can cause pry to open when an ImgError is raised by setting pry_on_img_error in _config.yml. Pry_on_img_error has priority die_on_img_error.

jekyll_img:
  die_on_img_error: false # Default value is false
  pry_on_img_error: true # Default value is false

Testing

Examine the output by running:

$ demo/_bin/debug -r

... and pointing your web browser to http://localhost:4444/

Unit Tests

Either run rspec from Visual Studio Code's Run and Debug environment (Ctrl-shift-D) and view the Debug Console output, or run it from the command line:

$ rspec

Build and Push to RubyGems

To release a new version,

  1. Update the version number in version.rb.

  2. Commit all changes to git; if you don't the next step might fail with an unexplainable error message.

  3. Run the following:

    $ bundle exec rake release

    The above creates a git tag for the version, commits the created tag, and pushes the new .gem file to RubyGems.org.

Contributing

  1. Fork the project
  2. Create a descriptively named feature branch
  3. Add your feature
  4. Submit a pull request

License

The gem is available as open source under the terms of the MIT License.