summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2020-09-02 11:06:11 -0700
committerDavid Tolnay <dtolnay@gmail.com>2020-09-02 11:06:19 -0700
commit69cc1fa005429c447758d0ffa376a6d5be97bc1a (patch)
treeec566af50e7e59f421f21b46b55dbe44eaa8295b /src
parentf6768b816ce371cc3759e06b001f1365c83cbd2d (diff)
End .nojekyll file with newline
Before: /path/to$ cat book/.nojekyll This file makes sure that Github Pages doesn't process mdBook's output./path/to$ ▎ After: /path/to$ cat book/.nojekyll This file makes sure that Github Pages doesn't process mdBook's output. /path/to$ ▎
Diffstat (limited to 'src')
-rw-r--r--src/renderer/html_handlebars/hbs_renderer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/renderer/html_handlebars/hbs_renderer.rs b/src/renderer/html_handlebars/hbs_renderer.rs
index 7880817b..9b5fc95e 100644
--- a/src/renderer/html_handlebars/hbs_renderer.rs
+++ b/src/renderer/html_handlebars/hbs_renderer.rs
@@ -184,7 +184,7 @@ impl HtmlHandlebars {
write_file(
destination,
".nojekyll",
- b"This file makes sure that Github Pages doesn't process mdBook's output.",
+ b"This file makes sure that Github Pages doesn't process mdBook's output.\n",
)?;
write_file(destination, "book.js", &theme.js)?;