-
|
I am writing a quarto render my_file.qmd --to ipynbIs there any hack that I can force a new markdown cell? In particular, I have something like # Question 1
Some math question...
$$
X = ?
$$
(double-click to modify answer)
# Question 2
lots more stuffWhat I want is a break before the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
This would be the way I think ::: {.cell .markdown}
# Question 1
Some math question...
$$
X = ?
$$
:::
::: {.cell .markdown}
# Question 2
lots more stuff
:::Note that this is a Pandoc feature (https://pandoc.org/MANUAL.html#jupyter-notebooks) and this would also work with Pandoc only, without Quarto - Quarto allows to render to all Pandoc supported formats (https://quarto.org/docs/output-formats/all-formats.html) Some advanced features may not work though for ipynb output |
Beta Was this translation helpful? Give feedback.
-
|
Thanks. Works beautifully |
Beta Was this translation helpful? Give feedback.
This would be the way I think
::: {.cell .markdown} # Question 1 Some math question... $$ X = ? $$ ::: ::: {.cell .markdown} # Question 2 lots more stuff :::Note that this is a Pandoc feature (https://pandoc.org/MANUAL.html#jupyter-notebooks) and this would also work with Pandoc only, without Quarto - Quarto allows to render to all Pandoc supported formats (https://quarto.org/docs/output-formats/all-formats.html)
Some advanced features may not work though for ipynb output