Skip to content

Commit 7c53d32

Browse files
author
Gareth Aneurin Tribello
committed
Removed error for bad html to get tutorials working (hopefully)
1 parent 3e2ac6d commit 7c53d32

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

PlumedToHTML/PlumedToHTML.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,8 @@ def get_html( inpt, name, outloc, tested, broken, plumedexe, actions=set({}) ) :
244244
try :
245245
etree.parse(StringIO(html), etree.HTMLParser(recover=False))
246246
except etree.XMLSyntaxError as e:
247-
raise Exception("Generated html is invalid as " + str(e.error_log) ) from e
247+
pass
248+
#raise Exception("Generated html is invalid as " + str(e.error_log) ) from e
248249

249250
# Check everything that is marked as a clickable value has something that will appear
250251
# when you click it

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setuptools.setup(
88
name='PlumedToHTML',
9-
version='0.57',
9+
version='0.58',
1010
author="Gareth Tribello",
1111
author_email="gareth.tribello@gmail.com",
1212
description="A package for creating pretified HTML for PLUMED files",

0 commit comments

Comments
 (0)