Merge branch 'dev' of github.com:XPoet/hexo-theme-keep into dev

This commit is contained in:
XPoet 2021-04-27 15:30:55 +08:00
commit 378d18c86f
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ hexo.extend.filter.register(
if (!theme.lazyload || !theme.lazyload.enable) return;
data.content = data.content.replace(
// Match 'img' tags width the src attribute.
/<img([^>]*)src="([^"]*)"([^>]*)>/gim,
/<img([^>]*)src="([^"]*)"([^>\/]*)\/?\s*>/gim,
function (match, attrBegin, src, attrEnd) {
// Exit if the src doesn't exists.
if (!src) return match;