We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1af727 commit 2d18034Copy full SHA for 2d18034
components.py _extensions/components.pycomponents.py renamed to _extensions/components.py
github.py _extensions/github.pygithub.py renamed to _extensions/github.py
seo.py _extensions/seo.pyseo.py renamed to _extensions/seo.py
@@ -129,7 +129,7 @@ def run(self):
129
if not image.startswith("/"):
130
local_img = f"/images/{image}"
131
image = "/_images/" + image
132
- p = Path(__file__).parent / local_img[1:]
+ p = Path(__file__).parent.parent / local_img[1:]
133
if not p.is_file():
134
raise ValueError(f"File {p} for seo tag does not exist {self.state.document}")
135
sitemap.py _extensions/sitemap.pysitemap.py renamed to _extensions/sitemap.py
conf.py
@@ -25,7 +25,7 @@
25
import sys
26
27
28
-sys.path.append(os.path.abspath("."))
+sys.path.append(os.path.abspath("_extensions"))
29
30
# -- General configuration ------------------------------------------------
31
0 commit comments