aoc-automation
Version:
Advent of Code tool to automate the repetitive parts of AoC.
27 lines (20 loc) • 482 B
JavaScript
import { stripIndents } from "common-tags";
const readmeDayMD = (year, day, title) => {
return stripIndents`
# 🎄 Advent of Code ${year} - Day ${day} ${title != null ? "- " + title : ""} 🎄
## Info
Task description: [link](https://adventofcode.com/${year}/day/${day})
## Results
\`\`\`
Time part 1: -
Time part 2: -
Both parts: -
\`\`\`
## Notes
...
`;
};
var readmeDayMD_default = readmeDayMD;
export {
readmeDayMD_default as default
};