mirror of https://github.com/status-im/codimd.git
Merge pull request #1250 from hackmdio/fix/fix-plantuml-minors
Fix/fix plantuml minors
This commit is contained in:
commit
9042b19a66
|
@ -125,7 +125,7 @@
|
|||
},
|
||||
"plantuml":
|
||||
{
|
||||
"server": "http://www.plantuml.com/plantuml"
|
||||
"server": "https://www.plantuml.com/plantuml"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -153,6 +153,9 @@ module.exports = {
|
|||
email: undefined
|
||||
}
|
||||
},
|
||||
plantuml: {
|
||||
server: 'https://www.plantuml.com/plantuml'
|
||||
},
|
||||
email: true,
|
||||
allowEmailRegister: true,
|
||||
allowGravatar: true,
|
||||
|
|
|
@ -97,7 +97,7 @@ var cursorActivityDebounce = 50
|
|||
var cursorAnimatePeriod = 100
|
||||
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 supportCharts = ['sequence', 'flow', 'graphviz', 'mermaid', 'abc']
|
||||
var supportCharts = ['sequence', 'flow', 'graphviz', 'mermaid', 'abc', 'plantuml']
|
||||
var supportHeaders = [
|
||||
{
|
||||
text: '# h1',
|
||||
|
|
Loading…
Reference in New Issue