Description
Similar to PEP 12, the reST primer in the devguide duplicates the same information in the Sphinx reST primer, along with some bits specific to its particular context.
In fact, unlike PEP 12, they are mostly word for word identical and thus clearly derive from a common source, with the Sphinx version being close to a strict superset of the CPython version, containing some additional and updated sections but also still mentioning many CPython-specific conventions (e.g. section heading format).
This near-duplication is clearly not very DRY, and has several main problems:
- Additions, improvements and updates/changes to one are not reflected in the other. Clearly, the more appropriate place for this is the Sphinx docs as it is generally applicable to all Sphinx users, and indeed they seem to have been kept much more up to date there, and it also links the full reST reference for each section for readers looking for more information.
- Readers already familiar with reST or just looking for the CPython-specific bits must either dig through each section, or may skip it entirely and miss them
Therefore, I propose for the Devguide reST primer:
- Recommending and linking the Sphinx reST primer at the top of the Devguide reST primer section
- Linking each top-level devguide reST primer section to the corresponding Sphinx section via Intersphinx
- Eliminating all but the CPython-specific guidance/convention/recommendations in each section
There are also some non-specific bits that could be trimmed from the Additional Markup Constructs
section, and each role/directive should be linked to its canonical full Sphinx documentation if present, but that can be addressed separately on a case by case basis.
If we agree this is desirable, I'm willing to take this on, unless @ezio-melotti would prefer to do it.
Somewhat related: #916
Activity