Skip to content
Snippets Groups Projects
Commit 37b72611 authored by Victor Poughon's avatar Victor Poughon
Browse files

DOC: render see also as line block

parent ad2e69b5
No related branches found
No related tags found
No related merge requests found
......@@ -354,7 +354,7 @@ def render_see_also(app):
if see_also is None or len(see_also) < 2:
return ""
else:
return rst_section("See also", "-") + see_also
return rst_section("See also", "-") + "| " + see_also.replace("\n", "\n| ") # use line blocks for see also
def multireplace(string, replacements):
"multiple string replace (from https://stackoverflow.com/a/6117124/5815110)"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment