Is it possible to show and evaluate a markdown text in Quarto / Rmarkdown?
I need to show both the raw markdown script and its compiled (evaluated) form, one after another. In Quarto, I can use the following code to show/format a markdown code, but this does not provide evaluated results (i.e. the link).
```{markdown}
#| echo: true
#| eval: true
[Quarto](https://quarto.org)
```
Thanks