Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def create_index_file(html_root: Path, builder: str) -> None:
args = create_parser()

root_directory = Path(__file__).resolve().parent
source_directory = root_directory
source_directory = root_directory / "peps"
build_directory = root_directory / args.output_dir

# builder configuration
Expand Down
6 changes: 3 additions & 3 deletions docs/rendering_system.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ to `PEP 676 <https://peps.python.org/pep-0676/>`__.

Configuration is stored in three files:

- ``conf.py`` contains the majority of the Sphinx configuration
- ``contents.rst`` contains the compulsory table of contents directive
- ``peps/conf.py`` contains the majority of the Sphinx configuration
- ``peps/contents.rst`` contains the compulsory table of contents directive
- ``pep_sphinx_extensions/pep_theme/theme.conf`` sets the Pygments themes

The configuration:
Expand All @@ -35,7 +35,7 @@ The configuration:
----------------

``build.py`` manages the rendering process.
Usage is covered in :doc:`build`.
Usage is covered in `Building PEPs Locally <./build.rst>`_.


3. Extension
Expand Down