We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb79e95 commit e8f4619Copy full SHA for e8f4619
1 file changed
packages/slidev/node/syntax/codeblock/plant-uml.ts
@@ -10,6 +10,6 @@ export default defineCodeblockTransformer(async ({ info, code, options: { data:
10
const [, options] = match
11
const optionsProp = options ? `v-bind="${options}"` : ''
12
const encoded = encodePlantUml(code.trim())
13
- const serverProp = plantUmlServer === undefined ? '' : ` :server=${JSON.stringify(plantUmlServer)}`
+ const serverProp = plantUmlServer === undefined ? '' : ` server=${JSON.stringify(plantUmlServer)}`
14
return `<PlantUml ${optionsProp} code="${encoded}"${serverProp} />`
15
})
0 commit comments