Updates:
        Labels: -Type-Defect Type-Enhancement

Comment #1 on issue 489 by pekka.klarck: libdoc.py must filter <pre>-Tags in JavaDoc
http://code.google.com/p/robotframework/issues/detail?id=489

Would it actually be better to make it possible to use HTML formatting in the documentation? That could be useful in in other situations too. We could make it possible to somehow specify the doc format (I have few ideas) and could support also
other formats like reStructuredText.

If you want to experiment with HTML in keyword docs, you can apply the following patch to libdoc.py. Notice that with this patch all docs are expected to be HTML.


Index: libdoc.py
===================================================================
--- libdoc.py   (revision 2566)
+++ libdoc.py   (working copy)
@@ -135,6 +135,7 @@

     def __getattr__(self, name):
         if name == 'htmldoc':
+            return self.doc
             return self._get_htmldoc(self.doc)
         if name == 'htmlshortdoc':
             return utils.html_attr_escape(self.shortdoc)


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

Reply via email to