Certain headings like "Examples" and "Notes" in napolean style docstrings render as normal text instead of headings. For example the following the docstring:
def half(x):
"""Divide a number in half
Parameters
----------
x : int
Number to be halfed
Examples
--------
>>> assert half(10) == 5
"""
return x / 2
Certain headings like "Examples" and "Notes" in napolean style docstrings render as normal text instead of headings. For example the following the docstring:
Renders as...