boakley / robotframework-hub

Web app for accessing robot framework assets
https://github.com/boakley/robotframework-hub/wiki
Apache License 2.0
169 stars 60 forks source link

reStructuredText is not supported #80

Open m00cl3nr opened 5 years ago

m00cl3nr commented 5 years ago

Sample python code that displays as expected by robot.libdoc:

ROBOT_LIBRARY_DOC_FORMAT = 'reST'

def foo (a, b):
    """Produces bar.

    :param ``a``: this is a.
    :param ``b``: this is b.
    """

Invoke hub:

user@ubuntu-01:~$ python -m rfhub ./test-project/testcases
tornado web server running on http://127.0.0.1:7070

Looks like this: image

Note the "param a" and "param b" fields are smashed together on one line, versus wit the libdoc, where the fields are displayed on separate lines in the html. I could not find remarks in the documentation whether reStructuredText was explicitly supported, but I assumed the use of docutils by robotframework-hub should make it so.

Thanks for the neat tool by the way.