hexo-renderer-marked-lazy
v1.0.2
Published
Markdown renderer plugin for Hexo, based on Tommy Chen's hexo-renderer-marked
Downloads
3
Readme
hexo-renderer-marked-lazy
This is a hexo renderer based on hexo-renderer-marked.
The only difference is that marked-lazy
supports simple lazy-loading images. The renderer will transform ![some desc](http://img.com/jpg)
into something like:
<img src="placeholder.gif" data-echo="http://img.com/jpg" alt="some desc">
As above implies, data-echo
is the default "lazy src" attribute name, and its value is the real image source. The name echo
come from echo.
In your _config.yml
, add your custom attribute as following:
marked:
lazyAttr: data-src
blankSrc: /img/placeholder.png
# for more options
# please refer to https://github.com/hexojs/hexo-renderer-marked
Then you can add some lazy-loading plugins to your pages.
Enjoy it!