Skip to content

Commit

Permalink
Removed error for bad html to get tutorials working (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gareth Aneurin Tribello committed May 9, 2024
1 parent 3e2ac6d commit 7c53d32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion PlumedToHTML/PlumedToHTML.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,8 @@ def get_html( inpt, name, outloc, tested, broken, plumedexe, actions=set({}) ) :
try :
etree.parse(StringIO(html), etree.HTMLParser(recover=False))
except etree.XMLSyntaxError as e:
raise Exception("Generated html is invalid as " + str(e.error_log) ) from e
pass
#raise Exception("Generated html is invalid as " + str(e.error_log) ) from e

# Check everything that is marked as a clickable value has something that will appear
# when you click it
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name='PlumedToHTML',
version='0.57',
version='0.58',
author="Gareth Tribello",
author_email="[email protected]",
description="A package for creating pretified HTML for PLUMED files",
Expand Down

0 comments on commit 7c53d32

Please sign in to comment.