docs -> doc

lol
This commit is contained in:
crumbtoo
2023-12-04 14:51:44 -07:00
parent cb6321fbf8
commit 6767bd0b4f
304 changed files with 29610 additions and 0 deletions

61
doc/src/conf.py Normal file
View File

@@ -0,0 +1,61 @@
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = "rl'"
copyright = '2023, madeleine sydney ślaga'
author = 'madeleine sydney slaga'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = ['sphinx.ext.imgmath']
# templates_path = ['_templates']
exclude_patterns = []
# for the haskell girlies
highlight_language = 'haskell'
add_function_parentheses = False
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'alabaster'
# html_static_path = ['_static']
# -- Options for LaTeX image math --------------------------------------------
imgmath_latex_preamble = r'''
\usepackage{amsmath}
\usepackage{tabularray}
\newcommand{\transrule}[2]
{\begin{tblr}{|rrrlc|}
\hline
& #1 \\
\implies & #2 \\
\hline
\end{tblr} }
\newcommand{\gmrule}[2]
{\begin{tblr}{|rrrrll|}
\hline
& #1 \\
\implies & #2 \\
\hline
\end{tblr} }
\newcommand{\nillist}{[\,]}
'''
imgmath_image_format = 'svg'
imgmath_font_size = 14
# helps with inlining:
# https://www.sphinx-doc.org/en/master/usage/extensions/math.html#confval-imgmath_use_preview
imgmath_use_preview = True