It works, I just wasn't sure if there wasn't something special regarding
docstrings so I had to check explicitly.
<a href="#a_property" class="m-doc">a_property</a>: float <span class="m-label m-flat m-warning">get</span>
</dt>
<dd>The <a class="m-doc" href="content_parse_docstrings.Class.html#a_property">a_property</a> has a <em>serious</em> docstring.</dd>
+ <dt id="another_property">
+ <a href="#another_property" class="m-doc-self">another_property</a> <span class="m-label m-flat m-warning">get</span>
+ </dt>
+ <dd>This property is documented in the class</dd>
</dl>
</section>
<section>
With a multi-line summary. Relative reference to :ref:`a_property` works
even from a summary.
+ :property another_property: This property is documented in the class
+
And class **details** as well."""
@property
And property **details** as well."""
+ @property
+ def another_property():
+ pass
+
class Enum(enum.Enum):
"""This enum has a *serious* docstring. :ref:`VALUE` works from a summary.