1.0.2 • Published 9 years ago
hexo-renderer-marked-lazy v1.0.2
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  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-markedThen you can add some lazy-loading plugins to your pages.
Enjoy it!