Skip to content

Commit 9042b19

Browse files
authored
Merge pull request #1250 from hackmdio/fix/fix-plantuml-minors
Fix/fix plantuml minors
2 parents 226718c + 0c4d0a0 commit 9042b19

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

config.json.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
},
126126
"plantuml":
127127
{
128-
"server": "http://www.plantuml.com/plantuml"
128+
"server": "https://www.plantuml.com/plantuml"
129129
}
130130
}
131131
}

lib/config/default.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@ module.exports = {
153153
email: undefined
154154
}
155155
},
156+
plantuml: {
157+
server: 'https://www.plantuml.com/plantuml'
158+
},
156159
email: true,
157160
allowEmailRegister: true,
158161
allowGravatar: true,

public/js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ var cursorActivityDebounce = 50
9797
var cursorAnimatePeriod = 100
9898
var supportContainers = ['success', 'info', 'warning', 'danger', 'spoiler']
9999
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())
100-
var supportCharts = ['sequence', 'flow', 'graphviz', 'mermaid', 'abc']
100+
var supportCharts = ['sequence', 'flow', 'graphviz', 'mermaid', 'abc', 'plantuml']
101101
var supportHeaders = [
102102
{
103103
text: '# h1',

0 commit comments

Comments
 (0)