From 0a582cc95b9d721015f07bdd469f9c920c935aed Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Fri, 8 Sep 2023 16:32:05 -0700 Subject: [PATCH] Add .jinja suffix to scriv template The template is not actually valid Markdown. This extension will help editors understand the file format. --- changelog.d/{_template.md => _template.md.jinja} | 0 pyproject.toml | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename changelog.d/{_template.md => _template.md.jinja} (100%) diff --git a/changelog.d/_template.md b/changelog.d/_template.md.jinja similarity index 100% rename from changelog.d/_template.md rename to changelog.d/_template.md.jinja diff --git a/pyproject.toml b/pyproject.toml index f1480963..2261f54b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -284,5 +284,5 @@ categories = [ entry_title_template = "{{ version }} ({{ date.strftime('%Y-%m-%d') }})" format = "md" md_header_level = "2" -new_fragment_template = "file:changelog.d/_template.md" -skip_fragments = "_template.md" +new_fragment_template = "file:changelog.d/_template.md.jinja" +skip_fragments = "_template.md.jinja"