Skip to content

Commit

Permalink
v0.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
manastalukdar committed Dec 30, 2023
1 parent 1ef0a0c commit af55c04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "markdown-it-textual-uml",
"version": "0.17.0",
"version": "0.17.1",
"description": "Markdown-it markdown parser plugin to create uml diagrams from text, based on plantuml, mermaid, etc.",
"main": "src/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/mermaid-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const functions = {

getMarkup(code) {
let content = removeTripleBackticks(code)
return `<pre><div class="mermaid">\n${content}\n</div></pre>\n`
return `<pre class="mermaid">\n${content}\n</pre>\n`
},
}

Expand Down

0 comments on commit af55c04

Please sign in to comment.