After the last release the custom template file was not found, and the default template is used.
I guess the bug was introduce by the change line 11 in create.js
| before |
after |
const customTemplate = path.join(Config_1.default.getSavePath(), 'template.md'); |
const customTemplate = path.join(Config.getSavePath(), 'template.', fileExt) |
I'm submitting a ...
[ ] language request
[x ] bug report
[ ] feature request
[ ] question about the decisions made in the repository
[ ] question about how to use this project
Summary
Hello,
After the last release the custom template file was not found, and the default template is used.
I guess the bug was introduce by the change line 11 in create.js
const customTemplate = path.join(Config_1.default.getSavePath(), 'template.md');const customTemplate = path.join(Config.getSavePath(), 'template.', fileExt)