1.0.0 • Published 4 years ago

markdown-it-image-lazysizes v1.0.0

Weekly downloads
285
License
MIT
Repository
github
Last release
4 years ago

markdown-it-image-lazysizes

A markdown-it plugin to support lazy loading of images using lazysizes.

The plugin makes lazyload possible by:

  • Move src to data-src
  • Add class lazyload to img tag.

lazysizes has to be installed to make this plugin work.

Install

npm i -D markdown-it-image-lazysizes
npm i -D lazysizes

Usage

const md = require('markdown-it')();
const lazy_loading = require('markdown-it-image-lazysizes');
md.use(lazy_loading);

md.render(`![](example.png "image title")`);
// <p><img alt="" title="image title" class="lazyloading" data-src="example.png"></p>\n

Add the lazysize javascript:

<script src="lazysizes.min.js" async></script>

Related Information

Contribution

This is a minimum plugin. Please open an issue when you need more functionalities or something doesn't work!