Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def get_version_path():
html_favicon = "_static/logo-icon.svg"

html_baseurl = (
f"https://meta-pytorch.org/forge/{version_path}" # needed for sphinx-sitemap
f"https://meta-pytorch.org/torchforge/{version_path}" # needed for sphinx-sitemap
)
sitemap_locales = [None]
sitemap_excludes = [
Expand Down Expand Up @@ -122,7 +122,7 @@ def get_version_path():
},
{
"name": "GitHub",
"url": "https://github.com/meta-pytorch/forge",
"url": "https://github.com/meta-pytorch/torchforge",
"icon": "fa-brands fa-github",
},
{
Expand All @@ -138,7 +138,7 @@ def get_version_path():
],
"use_edit_page_button": True,
"navbar_center": "navbar-nav",
"canonical_url": "https://meta-pytorch.org/forge/",
"canonical_url": "https://meta-pytorch.org/torchforge/",
"header_links_before_dropdown": 7,
"show_toc_level": 2,
"navigation_depth": 3,
Expand All @@ -151,7 +151,7 @@ def get_version_path():
"display_github": True,
"github_url": "https://github.com",
"github_user": "meta-pytorch",
"github_repo": "forge",
"github_repo": "torchforge",
"feedback_url": "https://github.com/meta-pytorch/forge",
"colab_branch": "gh-pages",
"github_version": "main",
Expand Down Expand Up @@ -290,7 +290,7 @@ def copy_markdown_tutorials(app):
# Copy the file
shutil.copy2(md_file, target_path)
print(
f"[Forge Docs] Copied {md_file.name} to {target_path.relative_to(app.srcdir)}"
f"[TorchForge Docs] Copied {md_file.name} to {target_path.relative_to(app.srcdir)}"
)


Expand Down
Loading