Replies: 1 comment
-
Note that the references pages are not the extensive documentation, it's really a glossary of the options. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
The Quarto documentation notes that content inserted via the
include-after-body
option can either be specified astext
directly in the YAML file, or by reference to an externalfile
. I'm interested in using the former of these two options, but at the same time I would like mytext
to be parsed as Markdown. Is this possible?In general, Markdown is not parsed
Save to
index.qmd
:Render via
which shows that the intended heading is ignored as a YAML comment.
What I also tried but does not work
Probably somewhat naively, I tried to add a
|
to make this work in the following fashion:But here, Markdown is not passed either and the heading just included as regular text.
Other ideas
Of course I could include the Markdown code as an external
file
, but in my case this seems overkill for the (actually very brief) Markdown code I'd like to include.Beta Was this translation helpful? Give feedback.
All reactions