Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhahn committed Apr 29, 2021
1 parent 5dba222 commit a67b001
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
cmd_line_template = (
"sphinx-apidoc --implicit-namespaces -f -o {outputdir} {moduledir}"
)
cmd_line = cmd_line_template.format(outputdir=output_dir, moduledir=module_dir)
cmd_line = cmd_line_template.format(
outputdir=output_dir, moduledir=module_dir)

args = cmd_line.split(" ")
if tuple(sphinx.__version__.split(".")) >= ("1", "7"):
Expand Down Expand Up @@ -94,7 +95,7 @@

# General information about the project.
project = "fibgrid"
copyright = "2021, Sebastian Hahn"
copyright = "2021, TU Wien"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -147,15 +148,15 @@

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = "alabaster"
html_theme = "sphinx_rtd_theme"

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
html_theme_options = {
"sidebar_width": "300px",
"page_width": "1200px"
}
# html_theme_options = {
# "sidebar_width": "300px",
# "page_width": "1200px"
# }

# Add any paths that contain custom themes here, relative to this directory.
# html_theme_path = []
Expand Down Expand Up @@ -245,7 +246,7 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
("index", "user_guide.tex", "fibgrid Documentation", "Sebastian Hahn", "manual")
("index", "user_guide.tex", "fibgrid Documentation", "TU Wien", "manual")
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down

0 comments on commit a67b001

Please sign in to comment.