Skip to content

Commit 4504afe

Browse files
committed
update quarto extension documentation and change R package repository to RSPM
1 parent 2c78607 commit 4504afe

File tree

2 files changed

+107
-71
lines changed

2 files changed

+107
-71
lines changed

computo-quarto-extension.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Quarto itself is a work-in-progress and a lot of bugs are constantly fixed or fe
1717
- using a [version of quarto > 1.2](https://github.com/quarto-dev/quarto-cli/releases)
1818
:::
1919

20-
To render/compile a document, run `quarto render`. A document will be generated that includes both content as well as the output of any embedded code chunks within the document:
20+
To render/compile a document, run `quarto render`. A document will be generated that includes both content and the output of any embedded code chunks within the document:
2121

2222
``` .bash
2323
quarto render content.qmd # will render to html
@@ -114,7 +114,7 @@ x <- rnorm(10)
114114

115115
### Python
116116

117-
<!-- ```{python}
117+
```{python}
118118
#| label: fig-plotly
119119
#| fig-cap: "A simple python plotly example"
120120
import plotly.express as px
@@ -123,7 +123,7 @@ fig = px.histogram(df, x="total_bill", y="tip", color="sex",
123123
marginal="box", # or violin, rug
124124
hover_data=df.columns)
125125
fig
126-
``` -->
126+
```
127127

128128
For a demonstration of a line plot on a polar axis, see @fig-polar
129129

0 commit comments

Comments
 (0)