8000 DOC: Minor cleanup in "Writing documentation" by timhoffm · Pull Request #24339 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

DOC: Minor cleanup in "Writing documentation" #24339

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 2, 2022
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions doc/devel/documenting_mpl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ You can use the ``O`` variable to set additional options:
* ``make O=-j4 html`` runs a parallel build with 4 processes.
* ``make O=-Dplot_form 652E ats=png:100 html`` saves figures in low resolution.

Multiple options can be combined, e.g. ``make O='-j4 -Dplot_gallery=0'
Multiple options can be combined, e.g. ``make O='-j4 -Dplot_formats=png:100'
html``.

On Windows, set the options as environment variables, e.g.:

.. code-block:: bat

set SPHINXOPTS= & set O=-j4 -Dplot_gallery=0 & make html
set SPHINXOPTS= & set O=-j4 -Dplot_formats=png:100 & make html

Showing locally built docs
--------------------------
Expand Down
0