fix: HTML + mustache interpolations not escaped properly
This commit is contained in:
parent
f1a516da03
commit
4632330d7c
@ -25,10 +25,10 @@ var mkdown = md({
|
|||||||
try {
|
try {
|
||||||
return '<pre class="hljs"><code>' + hljs.highlight(lang, str, true).value + '</code></pre>'
|
return '<pre class="hljs"><code>' + hljs.highlight(lang, str, true).value + '</code></pre>'
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return '<pre><code>' + str + '</code></pre>'
|
return '<pre><code>' + _.escape(str) + '</code></pre>'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return '<pre><code>' + str + '</code></pre>'
|
return '<pre><code>' + _.escape(str) + '</code></pre>'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.use(mdEmoji)
|
.use(mdEmoji)
|
||||||
|
@ -17,25 +17,26 @@
|
|||||||
},
|
},
|
||||||
"nav": {
|
"nav": {
|
||||||
"account": "Account",
|
"account": "Account",
|
||||||
"settings": "Settings",
|
"allpages": "All Pages",
|
||||||
|
"create": "Create",
|
||||||
|
"discard": "Discard",
|
||||||
|
"edit": "Edit",
|
||||||
|
"history": "History",
|
||||||
|
"home": "Home",
|
||||||
|
"login": "Login",
|
||||||
|
"logout": "Logout",
|
||||||
|
"move": "Move",
|
||||||
"myprofile": "My Profile",
|
"myprofile": "My Profile",
|
||||||
|
"normalview": "Normal View",
|
||||||
|
"savechanges": "Save Changes",
|
||||||
|
"savedocument": "Save Document",
|
||||||
|
"settings": "Settings",
|
||||||
|
"source": "Source",
|
||||||
"stats": "Stats",
|
"stats": "Stats",
|
||||||
"syssettings": "System Settings",
|
"syssettings": "System Settings",
|
||||||
"theme": "Color Theme",
|
"theme": "Color Theme",
|
||||||
"users": "Users",
|
"users": "Users",
|
||||||
"logout": "Logout",
|
"viewlatest": "View Latest"
|
||||||
"create": "Create",
|
|
||||||
"edit": "Edit",
|
|
||||||
"history": "History",
|
|
||||||
"source": "Source",
|
|
||||||
"move": "Move",
|
|
||||||
"allpages": "All Pages",
|
|
||||||
"login": "Login",
|
|
||||||
"normalview": "Normal View",
|
|
||||||
"viewlatest": "View Latest",
|
|
||||||
"discard": "Discard",
|
|
||||||
"savechanges": "Save Changes",
|
|
||||||
"savedocument": "Save Document"
|
|
||||||
},
|
},
|
||||||
"welcome": {
|
"welcome": {
|
||||||
"title": "Welcome to your wiki!",
|
"title": "Welcome to your wiki!",
|
||||||
|
@ -16,7 +16,7 @@ block rootNavRight
|
|||||||
block content
|
block content
|
||||||
editor(inline-template, current-path=pageData.meta.path, v-cloak)
|
editor(inline-template, current-path=pageData.meta.path, v-cloak)
|
||||||
.editor-area
|
.editor-area
|
||||||
textarea(ref='editorTextArea')= pageData.markdown
|
textarea(ref='editorTextArea', v-pre)= pageData.markdown
|
||||||
|
|
||||||
editor-video
|
editor-video
|
||||||
editor-codeblock
|
editor-codeblock
|
||||||
|
@ -16,7 +16,7 @@ block rootNavRight
|
|||||||
block content
|
block content
|
||||||
editor(inline-template, current-path=pageData.meta.path, v-cloak)
|
editor(inline-template, current-path=pageData.meta.path, v-cloak)
|
||||||
.editor-area
|
.editor-area
|
||||||
textarea(ref='editorTextArea')= pageData.markdown
|
textarea(ref='editorTextArea', v-pre)= pageData.markdown
|
||||||
|
|
||||||
editor-video
|
editor-video
|
||||||
editor-codeblock
|
editor-codeblock
|
||||||
|
@ -73,12 +73,11 @@ block content
|
|||||||
+tocMenu(pageData.tree)
|
+tocMenu(pageData.tree)
|
||||||
|
|
||||||
.column
|
.column
|
||||||
|
|
||||||
.hero
|
.hero
|
||||||
h1.title#title= pageData.meta.title
|
h1.title#title= pageData.meta.title
|
||||||
if pageData.meta.subtitle
|
if pageData.meta.subtitle
|
||||||
h2.subtitle= pageData.meta.subtitle
|
h2.subtitle= pageData.meta.subtitle
|
||||||
.content.mkcontent
|
.content.mkcontent(v-pre)
|
||||||
!= pageData.html
|
!= pageData.html
|
||||||
|
|
||||||
modal-create-page(basepath=pageData.meta.path)
|
modal-create-page(basepath=pageData.meta.path)
|
||||||
|
Loading…
Reference in New Issue
Block a user