Files
mol-robot/plugins/cook/utils/index.js
mol 901f127b8a
Some checks failed
continuous-integration/drone Build is failing
feat: v1.2.0
2023-12-13 18:54:37 +08:00

20 lines
430 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.shift(header);
}
if (footer) {
textList.push(footer);
}
return textList.join('\n----------\n');
}