When a line in Args is too long, we want to break it into several short lines. But currently, sphinx will parse the new lines as arguments.
Example:
What we want:
"""
Args:
x: blblblblblblbla
blblblblblblbla (we can put a long description string into multiple lines here)
"""
But the parsed result look like:
Sphinx will think the new line under x as a new argument. Can we fix this?
When a line in
Argsis too long, we want to break it into several short lines. But currently, sphinx will parse the new lines as arguments.Example:
What we want:
But the parsed result look like:
Sphinx will think the new line under
xas a new argument. Can we fix this?