How do I include parameters in markdown text? #5941
-
DescriptionI am using Quarto with Python and Jupyter. For example, define a parameter as such:
Then use it in the text:
But also in computations:
How can I do that, without having to have variables and parameters with the same name? Resources found: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can't in Jupyter. See the following issues/discussions: |
Beta Was this translation helpful? Give feedback.
You can't in Jupyter.
But you can using
engine: knitr
and thereticulate
R package, because parameters are set in the yaml frontmatter, thus allowing you to use{{< meta params.whatever >}}
.See the following issues/discussions: