🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

jekyll-loading-lazy

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jekyll-loading-lazy

0.1.1
100

Supply Chain Security

100

Vulnerability

100

Quality

100

Maintenance

100

License

Version published
Maintainers
1
Created

jekyll-loading-lazy

This plugin adds loading="lazy" to all img and iframe tags on your Jekyll site. No configuration needed.
If a loading attribute is already present nothing is changed.

loading="lazy" causes images and iframes to load lazily without any JavaScript. Browser support is growing.
If a browser does not support the loading attribute, it will load the resource just like it would normally.

If you like this plugin, be awesome and buy me a coffee ☕️. Thank you!

Installation

  • Add the following to your site's Gemfile:

    gem 'jekyll-loading-lazy'
    
  • add the following to your site's _config.yml:

    plugins:
      - jekyll-loading-lazy
    

    Note: if jekyll --version is less than 3.5 use:

    gems:
      - jekyll-loading-lazy
    
  • In your terminal, execute:

    bundle
    
  • (re)start your Jekyll server with:

    jekyll serve
    

That's basically all there is. In case you want to eager load some images/iframes, add loading="eager" to their tags.

Contributing

  • Fork this repository
  • Create your branch (git checkout -b feat/my-new-feature)
  • Commit your changes (git commit -m 'Add cool feature')
  • Push to the branch (git push origin feat/my-new-feature)
  • Create a new Pull Request

Testing

rake

Credits

Thanks to @keithmifsud's jekyll-target-blank whereon this Jekyll plugin largely bases.

FAQs

Package last updated on 21 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts