Skip to content

Commit af55c04

Browse files
committed
v0.17.1
1 parent 1ef0a0c commit af55c04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "markdown-it-textual-uml",
3-
"version": "0.17.0",
3+
"version": "0.17.1",
44
"description": "Markdown-it markdown parser plugin to create uml diagrams from text, based on plantuml, mermaid, etc.",
55
"main": "src/index.js",
66
"type": "module",

src/mermaid-parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const functions = {
1111

1212
getMarkup(code) {
1313
let content = removeTripleBackticks(code)
14-
return `<pre><div class="mermaid">\n${content}\n</div></pre>\n`
14+
return `<pre class="mermaid">\n${content}\n</pre>\n`
1515
},
1616
}
1717

0 commit comments

Comments
 (0)