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 16:24:50 +09:00 committed by cinwell.li
parent 000194c8da
commit 2a21c40f17
2 changed files with 2 additions and 2 deletions

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}'
})
}
]

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}'
})
}
]