-
DescriptionI have a project:
output-dir: .solutions_output
render:
- assessments/problem_set_1.qmd
- assessments/problem_set_2.qmd
post-render:
- python utilities/rename_solution_files.py I only really want the jupyter notebooks. Calling with I want to run this outputing the ipynb only by default, if that is possible? I tried putting |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Beta Was this translation helpful? Give feedback.
-
That did it. When I removed the format in the qmd files themselves it worked perfectly. |
Beta Was this translation helpful? Give feedback.
format: ipynb
should have worked. I suspect what's happening is that you have some other project settings that want HTML, and so we're accidentally seeing two different formats, and then deciding to render both. (It's the same discussion as #7096. Unfortunately, if that is your situation, I don't know of a good fix right now)