Sphinx AppleHelp Extension

2.0.0 · active · verified Sun Mar 29

sphinxcontrib-applehelp is a Sphinx extension which outputs Apple Help Books. It is maintained by the Sphinx project and has an irregular but generally active release cadence, with version 2.0.0 released in July 2024.

Warnings

Install

Imports

Quickstart

After installing, enable the extension by adding 'sphinxcontrib.applehelp' to the `extensions` list in your Sphinx `conf.py`. Then, build the documentation using the 'applehelp' builder.

# conf.py
project = 'My Project'
copyright = '2026, My Team'
extensions = [
    'sphinxcontrib.applehelp'
]

# To build from your documentation root:
# sphinx-build -b applehelp . _build/applehelp

view raw JSON →