From 708e0703c335fa608e06de866a843783e1c1c268 Mon Sep 17 00:00:00 2001 From: LuckyTurtleDev Date: Thu, 6 Jul 2023 14:03:40 +0200 Subject: [PATCH] Fix default template missing newlines before links if doc ends with html (#309) --- README.md | 1 + src/README.j2 | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index df07b24..979a32b 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,7 @@ This will use the latest stable Rust version available when the latest release o This project adheres to semantic versioning. All versions will be tested against the latest stable rust version at the time of the release. All non-bugfix changes to the rustdoc input processing and markdown output or the default readme template are considered breaking changes, as well as any non-backwards-compatible changes to the command-line arguments or to these stability guarantees. All other changes, including any changes to the Rust code, or bumping the MSRV, are not considered breaking changes. + [__link0]: https://github.com [__link1]: https://crates.io [__link2]: https://rustup.rs/ diff --git a/src/README.j2 b/src/README.j2 index c0a3a71..daefea6 100644 --- a/src/README.j2 +++ b/src/README.j2 @@ -21,5 +21,6 @@ {{ readme }} {%- if links != "" %} + {{ links }} {%- endif -%}