sphinx-doc / alabaster

Lightweight, configurable Sphinx theme

Home Page:http://alabaster.readthedocs.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Spacing after parameter list is too small compared to spacing before it.

anntzer opened this issue · comments

cat >project.py <<EOF
def foo(x):
    """
    Foos the thing.

    :param x: The x.
    """

def bar(y):
    """
    Bars the thing.

    :param y: The y.
    """
EOF
sphinx-apidoc . -o . -F -A me -V 0.0
PYTHONPATH=. make html

(in a clean folder) gives
screenshot

The vertical spacing between "Parameters" and "project.foo" is noticeably less than the spacing before "Parameters", which is a bit strange.