Compare commits

...

5 Commits

5 changed files with 30 additions and 17 deletions

View File

@ -1,10 +1,10 @@
.. CyMaIS - Cyber Master Infrastructure Solution documentation
Cyber Master Infrastructure Solution documentation
===========================================================
.. toctree::
:maxdepth: 5
:caption: Index:
:maxdepth: 1
:caption: About CyMaIS:
:glob:
:titlesonly:
**
*
roles/index.rst

3
roles/README.md Normal file
View File

@ -0,0 +1,3 @@
test
# h1

13
roles/index.rst Normal file
View File

@ -0,0 +1,13 @@
Applications and Roles
===========================================================
.. include:: ./README.md
:parsers: myst_parser
.. toctree::
:maxdepth: 1
:caption: Included Applications:
:glob:
*/README

View File

@ -3,10 +3,10 @@
# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXOPTS ?= -c .
SPHINXBUILD ?= sphinx-build
SOURCEDIR = /home/kevinveenbirkenbach/Repositories/github.com/kevinveenbirkenbach/cymais/
BUILDDIR = docs
SOURCEDIR = ../
BUILDDIR = ../docs
# Put it first so that "make" without argument is like "make help".
help:

View File

@ -6,6 +6,8 @@
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
import sys
project = 'CyMaIS - Cyber Master Infrastructure Solution'
copyright = '2025, Kevin Veen-Birkenbach'
author = 'Kevin Veen-Birkenbach'
@ -27,11 +29,12 @@ html_theme = 'alabaster'
html_static_path = ['_static']
html_sidebars = {
'**': [
'globaltoc.html', # globales Inhaltsverzeichnis
'relations.html', # Prev/Next Navigation
'localtoc.html', # Zeigt die lokale Navigation an
'relations.html', # Vorherige/Nächste Seite
'searchbox.html', # Suchfeld
]
}
html_theme_options = {
'fixed_sidebar': True,
}
@ -54,9 +57,3 @@ myst_enable_extensions = [
"colon_fence", # Für erweiterte Syntax wie ::: Hinweisboxen etc.
# weitere Erweiterungen nach Bedarf
]
#
#myst_xref_ignore = [
# r"\./roles/.*",
# "../"
#]