diff --git a/scripts/cloudinary.js b/scripts/cloudinary.js index 5728945..aa291b1 100644 --- a/scripts/cloudinary.js +++ b/scripts/cloudinary.js @@ -10,7 +10,7 @@ hexo.extend.tag.register('cloudinary', (args) => { const user = 'curben' - const fileName = args[0] + let fileName = args[0] const alt = args[1] || '' let modern = '' let legacy = '' @@ -26,36 +26,37 @@ hexo.extend.tag.register('cloudinary', (args) => { legacy = fileName } - const modernLink = link + '/' + modern + '?auto_format=false' - const legacyLink = link + '/' + legacy + '?auto_format=false' + fileName += '?auto_format=false' + modern += '?auto_format=false' + legacy += '?auto_format=false' const img = `${alt}` if (fileName.endsWith('.png') || fileName.endsWith('.webp')) { - return ` - + return ` + ` } else { - return `${img}` + return `` } }) diff --git a/themes/typing/layout/_partial/head.ejs b/themes/typing/layout/_partial/head.ejs index 2047e3d..abc4236 100644 --- a/themes/typing/layout/_partial/head.ejs +++ b/themes/typing/layout/_partial/head.ejs @@ -1,5 +1,6 @@ + <%- metaGenerator() %> <% let title = page.title @@ -22,7 +23,6 @@ %> <% if (title) { %><%= title %> | <% } %><%= config.title %> - <%- metaGenerator() %> <%/* Add Open Graph meta tags for easier sharing on social networking sites */%> <%/* Modified from original source for compatibility with my blog */%> <%- openGraph() %>