Hello i'm trying to create a docstring like this in Python:
def hello_world_request(self, json):
"""
foo
Example JSON:
{
"helloWorld": [
{
"firstWord": "Hello",
"lastWord": "World",
"comment": "foo"
}
]
}
:param json: json object
"""
Looking at the image below you can see the documentation. Is it possible to have each line in the docstring also show as a separate line in the documentation? So it looks like the docstring of the function.