Skip to content

Commit d2d2b40

Browse files
committed
🐛 Fix: add html suffix for jupyter notebook for initial validation
1 parent b82fae1 commit d2d2b40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vuegen/quarto_reportview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def run_report(self, output_dir: str = BASE_DIR) -> None:
219219
f"{file_path_to_qmd.stem}_revealjs.html"
220220
)
221221
elif self.report_type == r.ReportType.JUPYTER:
222-
out_path = file_path_to_qmd.with_suffix(".ipynb")
222+
out_path = file_path_to_qmd.with_suffix(".html")
223223
else:
224224
out_path = file_path_to_qmd.with_suffix(f".{self.report_type.lower()}")
225225
if not out_path.exists():

0 commit comments

Comments
 (0)