Fix/script in theme (#163)

* Add newline before appended content

* Also add new line to dev page
This commit is contained in:
Wei Wang
2017-05-29 15:24:50 +08:00
committed by cinwell.li
parent 000194c8da
commit 2a21c40f17
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -35,7 +35,7 @@
plugins: [
function(hook) {
hook.beforeEach(function (html) {
return html += '> Last modified {docsify-updated}'
return html += '\n> Last modified {docsify-updated}'
})
}
]
+1 -1
View File
@@ -53,7 +53,7 @@
plugins: [
function(hook) {
hook.beforeEach(function (html) {
return html += '> Last modified {docsify-updated}'
return html += '\n> Last modified {docsify-updated}'
})
}
]