Skip to content

Commit

Permalink
Merge branch 'main' into bugfix-broken-link-in-location-guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Marshall committed Sep 5, 2024
2 parents be26a5b + 1956c41 commit 6746010
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions documentation/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,17 @@
from recommonmark.transform import AutoStructify
from recommonmark.parser import CommonMarkParser

# -- Read the Docs --------------------------------------------------------

# Define the canonical URL if you are using a custom domain on Read the Docs
html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "")

# Tell Jinja2 templates the build is running on Read the Docs
if os.environ.get("READTHEDOCS", "") == "True":
if "html_context" not in globals():
html_context = {}
html_context["READTHEDOCS"] = True

# -- General configuration ------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ jsonref==0.1
lxml==4.9.1
openpyxl==3.0.10
schema==0.4.0
setuptools==65.5.0

0 comments on commit 6746010

Please sign in to comment.