Clean up unneeded docs build settings
This commit is contained in:
@@ -1,15 +0,0 @@
|
|||||||
# Read the Docs configuration file
|
|
||||||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
||||||
version: 2
|
|
||||||
build:
|
|
||||||
os: "ubuntu-22.04"
|
|
||||||
tools:
|
|
||||||
python: "3.11"
|
|
||||||
sphinx:
|
|
||||||
configuration: docs/source/conf.py
|
|
||||||
formats:
|
|
||||||
- htmlzip
|
|
||||||
- pdf
|
|
||||||
python:
|
|
||||||
install:
|
|
||||||
- requirements: docs/source/requirements.txt
|
|
||||||
+2
-12
@@ -27,7 +27,7 @@ with open(initFile) as inFile:
|
|||||||
else:
|
else:
|
||||||
release = "unknown"
|
release = "unknown"
|
||||||
|
|
||||||
version = release.split("-")[0]
|
version = release.partition("-")[0]
|
||||||
|
|
||||||
# -- General Configuration ---------------------------------------------------
|
# -- General Configuration ---------------------------------------------------
|
||||||
|
|
||||||
@@ -67,11 +67,6 @@ html_sidebars = {
|
|||||||
"**": ["navbar-logo", "sidebar-title", "sbt-sidebar-nav"],
|
"**": ["navbar-logo", "sidebar-title", "sbt-sidebar-nav"],
|
||||||
}
|
}
|
||||||
|
|
||||||
# -- Options for HTMLHelp Output ---------------------------------------------
|
|
||||||
|
|
||||||
# Output file base name for HTML help builder.
|
|
||||||
htmlhelp_basename = "novelWriterDoc"
|
|
||||||
|
|
||||||
# -- Options for LaTeX Output ------------------------------------------------
|
# -- Options for LaTeX Output ------------------------------------------------
|
||||||
|
|
||||||
latex_elements = {
|
latex_elements = {
|
||||||
@@ -84,11 +79,6 @@ latex_elements = {
|
|||||||
"figure_align": "htbp",
|
"figure_align": "htbp",
|
||||||
}
|
}
|
||||||
latex_logo = "_static/novelwriter-pdf.png"
|
latex_logo = "_static/novelwriter-pdf.png"
|
||||||
|
|
||||||
# Grouping the document tree into LaTeX files. List of tuples
|
|
||||||
# (source start file, target name, title,
|
|
||||||
# author, documentclass [howto, manual, or own class]).
|
|
||||||
latex_documents = [(
|
latex_documents = [(
|
||||||
master_doc, "manual.tex", "User Guide",
|
master_doc, "manual.tex", "User Guide", author, "manual"
|
||||||
author, "manual"
|
|
||||||
)]
|
)]
|
||||||
|
|||||||
Reference in New Issue
Block a user