We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
asis_output()
output: asis
--- title: "Test" format: typst: keep-typ: true keep-md: true --- ```{r} knitr::asis_output("`#set page(flipped: true)`{=typst}") ```
This will lead to the intermediate markdown
--- title: "Test" format: typst: keep-typ: true keep-md: true --- ::: {.cell} ```{.r .cell-code} knitr::asis_output("`#set page(flipped: true)`{=typst}") ``` ::: {.cell-output-display} `#set page(flipped: true)`{=typst} ::: :::
No output div are removed - nor :::{.cell} or the .cell-output-display one.
:::{.cell}
.cell-output-display
Using #| output: asis does removed it.
#| output: asis
I do think this is a knitr* issue because options$results = "asis" is only set for LaTeX output.
options$results = "asis"
This is related to #9184 as even if this is fixed in knitr, #9184 will remain.
The text was updated successfully, but these errors were encountered:
asis_output
results: asis
cderv
No branches or pull requests
This will lead to the intermediate markdown
No output div are removed - nor
:::{.cell}
or the.cell-output-display
one.Using
#| output: asis
does removed it.I do think this is a knitr* issue because
options$results = "asis"
is only set for LaTeX output.This is related to #9184 as even if this is fixed in knitr, #9184 will remain.
The text was updated successfully, but these errors were encountered: