2025-02-08 03:18:24 +00:00

11 lines
220 B
JavaScript
Executable File

// yml string to list
// yml 太烂了
hexo.extend.helper.register('getList', function (list) {
if (!list) return []
if (typeof list == "string") {
return [list]
} else {
return [...list]
}
});