1010 We are always happy to hear feedback from our users.
1111
1212 This is the repository for the command-line program `quarto`:
13-
13+
1414 - If you're reporting an issue with the VS Code extension, please visit https://github.com/quarto-dev/quarto
1515 - If you're reporting an issue inside RStudio, please visit https://github.com/rstudio/rstudio
1616
2424
2525 Thank you for using Quarto!
2626
27+ ---
28+
29+ You can share a Quarto document using the following syntax, _i.e._, using more backticks than you have in your document (usually four ` ```` `).
30+ For example with Quarto CLI >=1.5:
31+
32+ `````md
33+ ````qmd
34+ ---
35+ title: "Reproducible Quarto Document"
36+ format: html
37+ engine: jupyter
38+ ---
39+
40+ This is a reproducible Quarto document using `format: html`.
41+ It is written in Markdown and contains embedded Python code.
42+ When you run the code, it will produce a message.
43+
44+ ```{python}
45+ print("Hello, world!")
46+ ```
47+
48+ {#fig-placeholder}
49+
50+ {{< lipsum 1 >}}
51+
52+ A reference to @fig-placeholder.
53+
54+ The end.
55+ ````
56+ `````
57+
2758 - type : textarea
2859 attributes :
2960 label : Bug description
@@ -39,22 +70,31 @@ body:
3970 placeholder : |
4071 You can share a Quarto document using the following syntax, _i.e._, using more backticks than you have in your document (usually four ` ```` `).
4172
73+ `````md
4274 ````qmd
4375 ---
4476 title: "Reproducible Quarto Document"
4577 format: html
78+ engine: jupyter
4679 ---
4780
4881 This is a reproducible Quarto document using `format: html`.
49- It is written in Markdown and contains embedded R code.
50- When you run the code, it will produce a plot .
82+ It is written in Markdown and contains embedded Python code.
83+ When you run the code, it will produce a message .
5184
52- ```{r }
53- plot(cars )
85+ ```{python }
86+ print("Hello, world!" )
5487 ```
5588
89+ {#fig-placeholder}
90+
91+ {{< lipsum 1 >}}
92+
93+ A reference to @fig-placeholder.
94+
5695 The end.
5796 ````
97+ `````
5898
5999 - type : textarea
60100 attributes :
0 commit comments