Hi guys, I would like to be able to copy in a man page (or similar) to a tool's help file. At the moment, this fails due to the requirement for ReST. How falling back to wrapping the text in a <pre> ?: galaxy-dist james$ hg diff lib/galaxy/tools/__init__.py diff -r d2c5b964e635 lib/galaxy/tools/__init__.py --- a/lib/galaxy/tools/__init__.py Fri Oct 24 16:06:13 2008 -0400 +++ b/lib/galaxy/tools/__init__.py Mon Oct 27 11:28:01 2008 +0000 @@ -419,6 +419,7 @@ self.help = util.rst_to_html(self.help.text) except: log.exception( "error in help for tool %s" % self.name ) + self.help = "<pre>%s</pre>" % self.help.text # Multiple help page case if help_pages: for help_page in help_pages: cheers, James