Skip to content

Commit 64a1df3

Browse files
committed
style: add trailing newline to MARKDOWN_TEMPLATE
The template string in `mise-tasks/gen/ref-pages.py` was missing a trailing newline, causing the generated output to run into subsequent content. Adding `\n` ensures proper formatting in the rendered markdown.
1 parent 4d287b0 commit 64a1df3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mise-tasks/gen/ref-pages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import tomlkit
2020

21-
MARKDOWN_TEMPLATE: str = "::: {module_path}"
21+
MARKDOWN_TEMPLATE: str = "::: {module_path}\n"
2222
MODULE_SYMBOL: str = '<code class="doc-symbol doc-symbol-toc doc-symbol-module"></code>'
2323

2424

0 commit comments

Comments
 (0)