From b0a0d5b8a8a78d5295bfecf4c12f21ff2dc6ef72 Mon Sep 17 00:00:00 2001 From: monoid Date: Thu, 21 Apr 2022 17:53:14 +0900 Subject: [PATCH] refact: rename template --- tools/printDocument.ts | 4 ++-- tools/template/{overall.md.eta => overall.md} | 0 tools/template/{sr.md.eta => specific.md} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tools/template/{overall.md.eta => overall.md} (100%) rename tools/template/{sr.md.eta => specific.md} (100%) diff --git a/tools/printDocument.ts b/tools/printDocument.ts index 2339eed..e13546a 100644 --- a/tools/printDocument.ts +++ b/tools/printDocument.ts @@ -29,12 +29,12 @@ async function readAndPrint(args: { issues.sort((a, b) => a.number - b.number); let print: string = ""; if (args.overall) { - print = await Eta.renderFile("overall.md.eta", { + print = await Eta.renderFile("overall.md", { issues: issues }) as string; } else { - print = await Eta.renderFile("sr.md.eta", { + print = await Eta.renderFile("specific.md", { issues: issues }) as string; } diff --git a/tools/template/overall.md.eta b/tools/template/overall.md similarity index 100% rename from tools/template/overall.md.eta rename to tools/template/overall.md diff --git a/tools/template/sr.md.eta b/tools/template/specific.md similarity index 100% rename from tools/template/sr.md.eta rename to tools/template/specific.md