Reputation: 2477
I'm writing some documentation in Python using Spyder as IDE.
For example I have a function:
def TestFunction(args1,args2):
"""
General Description
Args:
args1: describing
args2: describing
Return:
data
"""
...code here....
Is it possible to make the documentation more fancy with words in bold or italics etc etc. Any reference?
Thanks
Upvotes: 0
Views: 790
Reputation: 2322
I use numpy a lot, so I installed numpydoc and it enabled 'automatic connections' in the help under preferences.
Upvotes: 1
Reputation: 34156
(Spyder maintainer here) It's possible to make your docs fancier by following the conventions of Restructured text. You can find its specification here.
Upvotes: 2