Skip to content

Commit

Permalink
Remove custom landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyMcCormick committed Jan 25, 2025
1 parent 740c94c commit 222b368
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,14 @@

from documenteer.sphinxconfig.utils import form_ltd_edition_name

# Add any paths that contain templates here, relative to this directory.
templates_path = ["templates"]

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.

# The short X.Y version.
github_ref = os.getenv("GITHUB_REF")
if github_ref is None:
with contextlib.closing(os.popen('git symbolic-ref HEAD')) as p:
with contextlib.closing(os.popen("git symbolic-ref HEAD")) as p:
github_ref = p.read().strip()
match = re.match(r"refs/(heads|tags|pull)/(?P<ref>.+)", github_ref)
if not match:
Expand Down Expand Up @@ -45,8 +42,4 @@
r".*/_images/",
]

html_additional_pages = {
"index": "overview.html"
}

mermaid_version = "10.3.0"

0 comments on commit 222b368

Please sign in to comment.