-
First things first: many thanks for Quarto, which is a real step forward. Following on from this issue in Rmarkdown, is there a chunk option, using the hash pipe, to show the hash pipes in Quarto output? (I realise that this is a bit meta!) For example, let's say that I have the following chunks ... #| eval: false
#| echo: true
x <- long_process(a, b)
readr::write_rds(x, "x.rds") ... and ... x <- readr::read_rds("x.rds")
# remaining calculations here ... and I want to show that I've created Many thanks again ... |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
With Quarto, this would be the For example, here we demonstrate the use of the output and code-overflow options:
This code block appears in the rendered document as:
Does it do what you are looking for ? |
Beta Was this translation helpful? Give feedback.
With Quarto, this would be the
echo: fenced
option. See in here: https://quarto.org/docs/computations/execution-options.html#fenced-echoFor example, here we demonstrate the use of the output and code-overflow options:
This code block appears in the rendered document as:
Does it do what you are looking for ?