-
DescriptionDear community, I have a question: I try to produce a self-contained html from my quarto. I use RStudio version ‘2024.12.1.563’ with quarto. Any help is appreciated! ---
title: "minimal example"
output:
html:
embed-resources: true
self-contained-math: true
editor_options:
chunk_output_type: console
---
## Quarto
Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.
::::: panel-tabset
## Exercise
Do
## Hints
::: {.hint exercise="ex_4"}
consider something
:::
## Solution
::: {.solution exercise="ex_4"}
Solution
:::
:::::
My problem is, that I do get a nice html output, but if I copy it, the corresponding _files folder is automatically copied with. This gets a problem when I try to share it, I would very much prefer to just share one single file. Already knowing if this theoretically should be possible would help me :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Your YAML is not valid: - output:
+ format:
html:
embed-resources: true
self-contained-math: true Maybe a second reading of the get started guide could help: https://quarto.org/docs/get-started/ |
Beta Was this translation helpful? Give feedback.
Your YAML is not valid:
Maybe a second reading of the get started guide could help: https://quarto.org/docs/get-started/