Skip to content

Commit 98870ab

Browse files
Gareth Aneurin TribelloGareth Aneurin Tribello
authored andcommitted
Fixed bug in last commit
1 parent 9657ea5 commit 98870ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "PlumedToHTML"
8-
version = "0.112"
8+
version = "0.113"
99
description = "A package for creating prettified HTML for PLUMED files"
1010
authors = [{ name = "Gareth Tribello", email = "[email protected]" }]
1111
maintainers = [{ name = "Daniele Rapetti", email = "[email protected]" }]

src/PlumedToHTML/PlumedToHTML.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ def processMarkdownString( inp, filename, plumedexe, plumed_names, actions, ofil
700700
else :
701701
raise RuntimeError(usemermaid + "is invalid instruction for use mermaid")
702702
if ghmarkdown : ofile.write("```mermaid\n" + mermaidinpt + "\n```\n")
703-
else : print("<pre class=\"mermaid\">\n" + mermaidinpt + "\n</pre>\n")
703+
else : ofile.write("<pre class=\"mermaid\">\n" + mermaidinpt + "\n</pre>\n")
704704
usemermaid = ""
705705

706706
# Check if this is the input for a command line tool and render accordingly

0 commit comments

Comments
 (0)