I am looking at this snippet of code:
def ook(*args):
"""Some silly function.
:param *args: Optional arguments.
"""
...
And as soon as I run Sphinx, I get the oh-so helpful error:
WARNING: Inline literal start-string without end-string.
So, I tried param ``*``args
, param :literal:'*' args
and still get the warning.
How do I have a literal '*' in restructuredText?