Merge pull request #1250 from hackmdio/fix/fix-plantuml-minors

Fix/fix plantuml minors
This commit is contained in:
Max Wu 2019-08-03 21:40:10 +08:00 committed by GitHub
commit 9042b19a66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -125,7 +125,7 @@
}, },
"plantuml": "plantuml":
{ {
"server": "http://www.plantuml.com/plantuml" "server": "https://www.plantuml.com/plantuml"
} }
} }
} }

View File

@ -153,6 +153,9 @@ module.exports = {
email: undefined email: undefined
} }
}, },
plantuml: {
server: 'https://www.plantuml.com/plantuml'
},
email: true, email: true,
allowEmailRegister: true, allowEmailRegister: true,
allowGravatar: true, allowGravatar: true,

View File

@ -97,7 +97,7 @@ var cursorActivityDebounce = 50
var cursorAnimatePeriod = 100 var cursorAnimatePeriod = 100
var supportContainers = ['success', 'info', 'warning', 'danger', 'spoiler'] var supportContainers = ['success', 'info', 'warning', 'danger', 'spoiler']
var supportCodeModes = ['javascript', 'typescript', 'jsx', 'htmlmixed', 'htmlembedded', 'css', 'xml', 'clike', 'clojure', 'ruby', 'python', 'shell', 'php', 'sql', 'haskell', 'coffeescript', 'yaml', 'pug', 'lua', 'cmake', 'nginx', 'perl', 'sass', 'r', 'dockerfile', 'tiddlywiki', 'mediawiki', 'go', 'gherkin'].concat(hljs.listLanguages()) var supportCodeModes = ['javascript', 'typescript', 'jsx', 'htmlmixed', 'htmlembedded', 'css', 'xml', 'clike', 'clojure', 'ruby', 'python', 'shell', 'php', 'sql', 'haskell', 'coffeescript', 'yaml', 'pug', 'lua', 'cmake', 'nginx', 'perl', 'sass', 'r', 'dockerfile', 'tiddlywiki', 'mediawiki', 'go', 'gherkin'].concat(hljs.listLanguages())
var supportCharts = ['sequence', 'flow', 'graphviz', 'mermaid', 'abc'] var supportCharts = ['sequence', 'flow', 'graphviz', 'mermaid', 'abc', 'plantuml']
var supportHeaders = [ var supportHeaders = [
{ {
text: '# h1', text: '# h1',