zfsbootmenu/docs
classabbyamp 2e9f60df77
docs/_ext/: initial bash doc comment extension [WIP]
2023-01-07 20:44:08 -05:00
..
_ext docs/_ext/: initial bash doc comment extension [WIP] 2023-01-07 20:44:08 -05:00
_static migrate README contents to docs/index.rst 2022-12-22 10:24:47 -06:00
guides guides/void-linux: replace XBPS_TARGET_ARCH with XBPS_ARCH 2022-12-23 17:36:24 -05:00
logos docs: add text-only logo, use on index page 2022-12-22 11:10:44 -06:00
man migrate README contents to docs/index.rst 2022-12-22 10:24:47 -06:00
online docs/online/*.rst: fix permissions 2022-12-21 21:22:58 -05:00
.editorconfig docs/: add sphinx & rtd boilerplate 2022-12-20 21:53:42 -06:00
CHANGELOG.md remove remaining pod docs, references to them, and releng scripts 2022-12-22 20:58:28 -05:00
Makefile docs/Makefile: support opendoas, add target to remove Void packages 2022-12-22 15:45:29 -05:00
README.md docs/README.md: add meta-documentation 2022-12-22 20:58:28 -05:00
conf.py docs/_ext/: initial bash doc comment extension [WIP] 2023-01-07 20:44:08 -05:00
index.rst Drop the beginner's guide from the official docs; it belongs on the wiki 2022-12-22 13:52:28 -05:00
media migrate README contents to docs/index.rst 2022-12-22 10:24:47 -06:00
requirements.txt docs/: add sphinx & rtd boilerplate 2022-12-20 21:53:42 -06:00

README.md

ZFSBootMenu Documentation

This document gives an overview of how the Sphinx documentation for ZFSBootMenu works.

Building

The Makefile alongside this document provides several targets to prepare the Sphinx environment and render documentation.

Prerequisites

Python 3 and several Python 3 packages are needed:

  • rst2ansi
  • sphinx
  • sphinx-tabs
  • sphinx_rtd_theme
  • recommonmark

On Void Linux, these can be installed with make setup-void. Otherwise, these packages can be installed through your system package manager or via pip in a virtual environment with make setup.

If using the virtual environment method, you will then need to activate this environment with source env/bin/activate (may be different for some shells) before running a build command.

Generating Documentation

Generally, the commands to build the documentation are make html (to build the web documentation) and make man (to build the manpages).

Several special targets exist too. make serve can be used to build and locally serve the web documentation using Python's built-in webserver. make gen-man can be used to build the manpages and update them in /docs/man/dist.

See make help for a list of all possible targets.

Organisation

  • conf.py: the Sphinx configuration file
  • index.rst: the main page, and where the primary toctrees are listed
  • CHANGELOG.md: the changelog for ZFSBootMenu
  • guides: where most documentation should reside. Documents about various topics, including installation on various distros and various configuration options
  • man: manpages
  • online: documentation primarily to be shown within ZFSBootMenu's help system
  • logos: various versions of the ZFSBootMenu logo
  • _static: various static files for use within the documentation

Formatting

  • Most pages are written in reStructuredText (RST) format
  • Some (like the changelog) are written in markdown for compatibility, so markdown is supported but RST is preferred
  • When possible, keep lines limited to 120 characters, and use 2 spaces for indentation

To link to files within the ZFSBootMenu repository, use the :zbm: macro:

:zbm:`title <bin/generate-zbm>`
:zbm:`bin/generate-zbm`

will both create a link to the file /bin/generate-zbm on GitHub.

Headings

reStructuredText allows various forms of section heading syntax. In this documentation, use:

Level 1:

My Title
========

Level 2:

My Title
--------

Level 3:

My Title
~~~~~~~~

Level 4:

My Title
^^^^^^^^

Also, the number of characters in the underline should match the number of characters in the title.

Resources

To get a good overview of reStructuredText and Sphinx, take a look at the following resources: