hexo.extend.helper.register('post_icon', function (post, command) {
const mapping = {
status: {
done: ``,
doing: ``,
todo: ``,
other: ``
},
top: {
other: ``
}
}
const iconInPost = post[command]
const iconGroup = mapping[command]
return iconGroup[iconInPost] ?? iconGroup['other']
});