| myst | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
(setup-build-label)=
This document covers how to build the Plone Documentation and check it for quality.
(setup-build-installation-label)=
Installation of Plone 6 Documentation includes pre-requisites and the repository itself.
(setup-build-installation-python-label)=
Python 3.8 or later is required. A more recent Python is preferred. Use your system's package manager or pyenv to install an appropriate version of Python.
(setup-build-installation-vale-label)=
Vale is a linter for narrative text.
It checks spelling, English grammar, and style guides.
Plone documentation uses a custom spelling dictionary, with accepted and rejected spellings in styles/Vocab/Plone.
Use your operating system's package manager to install Vale.
Vale also has integrations with various IDEs.
Plone documentation uses a file located at the root of the repository, .vale.ini, to configure Vale.
This file allows overriding rules or changing their severity.
The Plone Documentation Team selected the Microsoft Writing Style Guide for its ease of use—especially for non-native English readers and writers—and attention to non-technical audiences.
More corrections to spellings and Vale's configuration are welcome by submitting a pull request.
This is an easy way to become a contributor to Plone.
(setup-build-installation-graphviz-label)=
Install Graphviz for graph visualization.
````{tab-item} macOS
```shell
brew install graphviz
```
````
````{tab-item} Ubuntu
```shell
sudo apt-get install graphviz
```
````
(setup-build-installation-clone-plone-documentation-label)=
Clone the Plone Documentation repository, and change your working directory into the cloned project.
Then with a single command using Makefile, create a Python virtual environment, install project dependencies, pull in Volto documentation as a git submodule, build the docs, and view the results in a web browser by opening /_build/html/index.html.
git clone https://github.com/plone/documentation.git
cd documentation
make html(setup-build-available-documentation-builds-label)=
All build and check documentation commands use the file Makefile.
To see the most frequently used builds, use the following command.
make helpElse you can open Makefile to see other build formats, including PDF.
html is the HTML version of the documentation.
make htmlOpen /_build/html/index.html in a web browser.
livehtml rebuilds Sphinx documentation on changes, with live-reload in the browser.
make livehtmlOpen http://0.0.0.0:8000/ in a web browser.
linkcheck checks all links.
See {ref}authors-linkcheck-label for configuration.
make linkcheckOpen /_build/linkcheck/output.txt for a list of broken links.
vale checks for American English spelling, grammar, syntax, and the Microsoft Developer Style Guide.
See {ref}authors-english-label for configuration.
make valeSee the output on the console for suggestions.
html_meta adds a meta data section to each chapter if missing.
See {ref}authors-html-meta-data-label for more info.
make html_meta