2018-10-01 02:24:11 +00:00
|
|
|
/*
|
2019-05-23 07:16:02 +00:00
|
|
|
* Put {% cloudinary 'folder/filename.jpg' 'description' %} in your post.
|
|
|
|
* Change the username in data-src tag
|
|
|
|
* and cloud name in typing.js
|
2018-10-01 02:24:11 +00:00
|
|
|
* src is an animated svg generated from https://loading.io/
|
|
|
|
* More info:
|
|
|
|
* https://hexo.io/docs/tag-plugins
|
|
|
|
* https://hexo.io/api/tag
|
|
|
|
* https://cloudinary.com/documentation/responsive_images
|
|
|
|
*/
|
2019-05-23 07:16:02 +00:00
|
|
|
hexo.extend.tag.register('cloudinary', (args) => {
|
|
|
|
const fileName = args[0]
|
|
|
|
let alt = ""
|
|
|
|
|
|
|
|
if (args[1]) {
|
|
|
|
alt = args[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
return '<img class="cld-responsive" data-src="https://res.cloudinary.com/curben/image/upload/w_auto,f_auto,q_auto,c_scale/c_limit,w_500/' + fileName + '" src="/svg/loading.svg" alt="' + alt + '">'
|
2018-10-25 09:03:38 +00:00
|
|
|
})
|