Rendering html code generated by a Python script #2654
Answered
by
mcanouil
lukefullard
asked this question in
Q&A
-
Hello Quarto community. I am trying to create an html document which calls a Python script. The Python script generates some raw html, and then I want quarto to render the html.
But how can I render raw html which is generated in the Python code block? Thanks for your help! |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Sep 28, 2022
Replies: 1 comment 1 reply
-
Using the yaml option |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
lukefullard
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using the yaml option
output: asis
as described in https://quarto.org/docs/reference/cells/cells-jupyter.html#cell-output. 😉