Files
mol-robot/plugins/cook/utils/index.js
mol 16196c46ac
All checks were successful
continuous-integration/drone/push Build is passing
test
2023-12-14 14:35:47 +08:00

20 lines
408 B
JavaScript

export function genRecipeMessage(recipeList, header, footer) {
const textList = [];
for (let recipe of recipeList) {
textList.push(
`${recipe.name}\n材料:${recipe.stuff}\n厨具:${recipe.tools}\nhttps://www.bilibili.com/video/${recipe.bv}`,
);
}
if (header) {
textList.unshift(header);
}
if (footer) {
textList.push(footer);
}
return textList.join('\n \n');
}