1.0.2 • Published 7 years ago

hexo-renderer-marked-lazy v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

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!

1.0.2

7 years ago

0.1.3

7 years ago

0.1.2

8 years ago

0.1.1

8 years ago