I am considering this piece of code:
def ook(*args): """Some silly function. :param *args: Optional arguments. """ ...
And as soon as I start Sphinx, I get an oxy-useful error:
WARNING: Inline literal start-string without end-string.
So, I tried param ``*``args , param :literal:'*' args and still get a warning.
How do I have the literal '*' in the restructured text?
python restructuredtext python-sphinx
Sardathrion
source share