From 2a21c40f17dfbae8799b7b865719f8a570c8fd28 Mon Sep 17 00:00:00 2001 From: Wei Wang Date: Mon, 29 May 2017 16:24:50 +0900 Subject: [PATCH] Fix/script in theme (#163) * Add newline before appended content * Also add new line to dev page --- dev.html | 2 +- docs/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev.html b/dev.html index 51099d77..837dbf96 100644 --- a/dev.html +++ b/dev.html @@ -35,7 +35,7 @@ plugins: [ function(hook) { hook.beforeEach(function (html) { - return html += '> Last modified {docsify-updated}' + return html += '\n> Last modified {docsify-updated}' }) } ] diff --git a/docs/index.html b/docs/index.html index 04a620c4..703bfb8a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -53,7 +53,7 @@ plugins: [ function(hook) { hook.beforeEach(function (html) { - return html += '> Last modified {docsify-updated}' + return html += '\n> Last modified {docsify-updated}' }) } ]