After activating admindocs in Django app, the following comment is added in an object:
"""
Maintains ABC Object definitions. Each ABC has one or more PQR.
See Also :model:`myapp.PQR` and :model:`myapp.XYZ`.
"""
In Django Admin Documentation, it is rendered as a single line:
Maintains ABC Object definitions. Each ABC has one or more PQR. See Also: myapp.PQR and myapp.XYZ.
Is there a way to apply line breaks in comments. I'm new to python/ django.
Saw How to preserve line breaks when generating python docs using sphinx but adding a Vertical bar ( with 2 empty spaces as well) did not work. Vertical bar also became part of the single line:
Maintains ABC Object definitions. Each ABC has one or more PQR. | See Also: myapp.PQR and myapp.XYZ.