hexo-theme-stellar/scripts/helpers/icon.js

17 lines
372 B
JavaScript
Raw Normal View History

2024-01-19 13:51:55 +08:00
'use strict';
hexo.extend.helper.register('icon', function(args){
const { icons } = hexo.theme.config
var result = ''
if (icons[args]) {
result = icons[args]
} else {
result = args
}
if (result.startsWith('/') || result.startsWith('https://') || result.startsWith('http://')) {
return `<img src="${result}" />`
} else {
return result
}
})