(arrayOfScripts)
| 82 | } |
| 83 | |
| 84 | function createTemplate(arrayOfScripts) { |
| 85 | return arrayOfScripts |
| 86 | .map((script) => { |
| 87 | const comment = allComments[script] |
| 88 | return dedent`### [\`${script}\`](${script})\n\n${comment}\n\n---\n\n` |
| 89 | }) |
| 90 | .join('\n') |
| 91 | } |