Skip to content

Commit f55ad70

Browse files
committed
change notebook output_html
1 parent 611bb1c commit f55ad70

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/source/sphinxext/gallery_generator.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ class NotebookGenerator:
7272
def __init__(self, filename, target_dir):
7373
self.basename = os.path.basename(filename)
7474
self.stripped_name = os.path.splitext(self.basename)[0]
75-
self.output_html = os.path.join("..", "notebooks", f"{self.stripped_name}.html")
75+
self.output_html = os.path.join(
76+
"..", "pymc-examples", "notebooks", f"{self.stripped_name}.html"
77+
)
7678
self.image_dir = os.path.join(target_dir, "_images")
7779
self.png_path = os.path.join(self.image_dir, f"{self.stripped_name}.png")
7880
with open(filename) as fid:

0 commit comments

Comments
 (0)