Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions documentation/markup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -373,11 +373,10 @@ module being documented. Each module should be documented in its own file.
Normally this markup appears after the title heading of that file; a typical
file might start like this::

:mod:`parrot` -- Dead parrot access
===================================
:mod:`!parrot` -- Dead parrot access
====================================

.. module:: parrot
:platform: Unix, Windows
:synopsis: Analyze and reanimate dead parrots.
.. moduleauthor:: Eric Cleese <eric@python.invalid>
.. moduleauthor:: John Idle <john@python.invalid>
Expand All @@ -391,12 +390,6 @@ As you can see, the module-specific markup consists of two directives, the
or submodule. The name should be fully qualified (that is, including the
package name for submodules).

The ``platform`` option, if present, is a comma-separated list of the
platforms on which the module is available (if it is available on all
platforms, the option should be omitted). The keys are short identifiers;
examples that are in use include "IRIX", "Mac", "Windows", and "Unix". It is
important to use a key which has already been used when applicable.

The ``synopsis`` option should consist of one sentence describing the
module's purpose -- it is currently only used in the Global Module Index.

Expand Down
Loading