sandbox-sphinx/getting-started
dancingCycle b3030cb221 feat(getting-started): refactor 2023-04-13 18:03:30 +02:00
..
source feat(getting-started): initial commit 2023-04-13 17:44:25 +02:00
.gitignore feat(getting-started): initial commit 2023-04-13 17:44:25 +02:00
Makefile feat(getting-started): initial commit 2023-04-13 17:44:25 +02:00
make.bat feat(getting-started): initial commit 2023-04-13 17:44:25 +02:00
readme.md feat(getting-started): refactor 2023-04-13 18:03:30 +02:00

readme.md

Introduction

  • setup the project
sphinx-quickstart
  • install Sphinx
https://www.sphinx-doc.org/en/master/usage/installation.html
  • get started with Sphinx
https://www.sphinx-doc.org/en/master/usage/quickstart.html#

Build Documentation

Running Generator via Make

Execute make without an argument to see which targets are available

make

The top level directory contains a Makefile. Generate HTML output

make html

Generate PDF output

make latexpdf

The output files can be found in the subfolder ./build.

All generated intermediate artifacts and the final output files can be found in the ./build subfolder.

Generate all output

make bundle

Clean up

  1. Deactivate the virtual Python environment
deactivate
  1. Clean up the build sources:
make clean

File System

  • build: build directory
  • Makefile: build configuration
  • readme.md: this file
  • source: source directory

Links