-
DescriptionI have a profile file such as a project:
type: website
output-dir: .lectures_output
render:
- lectures/index.qmd
- lectures/intro.qmd
- lectures/python.qmd
search: false
website:
title: "Example Quarto Slides"
navbar:
left:
- href: index.qmd
format:
html:
theme: cosmo
css: styles.css
toc: true I want to output the HTML and also a ipynb verison of it. RIght now I manually go quarto render --profile lectures
quarto render --profile lectures --to ipynb --no-clean Is there a way to modify my file to make this happen automatically when I go |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Did format:
html:
theme: cosmo
css: styles.css
toc: true
ipynb: default not do the trick? |
Beta Was this translation helpful? Give feedback.
-
Thanks. So simple, not sure why I was confused. It didn't work at the project level, but I put the |
Beta Was this translation helpful? Give feedback.
-
Almost works for me! My only challenge is that I have one of the qmd files intended to be a webpage entry to a set of revealjs lectures. So I put in the following for the
But for the entrypoint (the `index.qmd') I want a normal HTML file, and no revealjs-clean and no ipynb output. Can I make changes to the file itself to overrite those and turn off ipynb and the clean-revealjs instead? For example, if I had the following in I would prefer not to put things in a sub-folder, but I guess that would also work. title: "Example Quarto Slides"
|
Beta Was this translation helpful? Give feedback.
Did
not do the trick?