Skip to content

Commit 6f4334e

Browse files
committed
Docs: Further minor tweaks to article openings
1 parent 9c50d13 commit 6f4334e

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

docs/getting_started/editor.qmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: Interactive Code Blocks
3-
subtitle: Dynamic code evaluation in Quarto HTML documents, powered by WebAssembly.
3+
subtitle: Dynamic evaluation of user provided code and data visualisation
44
format: live-html
55
engine: knitr
66
toc: true
77
---
88

99
{{< include ../_extensions/r-wasm/live/_knitr.qmd >}}
1010

11-
The `quarto-live` extension provides WebAssembly powered cells that can be used in Quarto HTML documents to provide real-time evaluation of user provided code and data visualisation.
11+
The `quarto-live` extension provides WebAssembly powered cells that can be used in Quarto HTML documents to provide dynamic evaluation of user provided code and data visualisation.
1212

1313
## Interactive editor
1414

docs/getting_started/packages.qmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Loading and Using Packages
3-
subtitle: Integrating R and Python packages into live Quarto HTML documents.
3+
subtitle: Integrating R and Python packages into interactive Quarto documents
44
format: live-html
55
engine: knitr
66
toc: true

docs/index.qmd

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
---
22
title: Introduction
3+
subtitle: WebAssembly powered code blocks and exercises for Quarto HTML documents
34
format: live-html
45
engine: knitr
56
toc: true
67
---
78

89
{{< include _extensions/r-wasm/live/_knitr.qmd >}}
910

10-
## Quarto Live
11-
12-
Embed WebAssembly powered code blocks and exercises for both the R and Python languages into [Quarto](https://quarto.org) documents using HTML-based output formats.
11+
Embed WebAssembly powered code blocks and exercises for both the R and Python languages into [Quarto](https://quarto.org) documents with HTML-based output formats.
1312

14-
The [webR](https://docs.r-wasm.org/webr/latest/) and [Pyodide](https://pyodide.org/en/stable/) WebAssembly engines are used to dynamically execute code in the user's web browser, so only a static web service (such as [GitHub Pages](https://pages.github.com), [Quarto Pub](https://quartopub.com), or [Netlify](https://www.netlify.com)) is required.
13+
## Quarto Live
1514

16-
This extension provides:
15+
The `quarto-live` extension provides:
1716

1817
* Interactive R and Python code blocks.
1918

@@ -25,16 +24,19 @@ This extension provides:
2524

2625
* Integration with OJS so that interactive code cells update reactively with `ojs` cells.
2726

28-
## Demo
27+
The [webR](https://docs.r-wasm.org/webr/latest/) and [Pyodide](https://pyodide.org/en/stable/) WebAssembly engines are used to dynamically execute code in the user's web browser, so only a static web service (such as [GitHub Pages](https://pages.github.com), [Quarto Pub](https://quartopub.com), or [Netlify](https://www.netlify.com)) is required.
28+
29+
### Demo
2930

3031
```{webr}
3132
#| autorun: false
33+
#| completion: true
3234
mod <- lm(waiting ~ eruptions, data = faithful)
3335
plot(faithful, main = "Old Faithful Geyser Data")
3436
summary(mod)
3537
```
3638

37-
## Installation
39+
### Installation
3840

3941
To use this extension, run the following command in a terminal with a Quarto document as the working directory:
4042

@@ -44,7 +46,7 @@ quarto add r-wasm/quarto-live
4446

4547
Once installed, the extension can be used with Quarto documents within this project.
4648

47-
## Usage
49+
### Usage
4850

4951
First set the format for your Quarto document as a `live` variant in the `yaml` header:
5052

0 commit comments

Comments
 (0)