Skip to content

Commit 99ba4db

Browse files
committed
Apply review suggestions
1 parent dda8682 commit 99ba4db

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/get-started/hello/positron.qmd

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tool:
1818
Quarto is an open-source scientific and technical publishing system that weaves together code and narrative to produce high-quality documents, presentations, websites, and more.
1919
In this tutorial, you'll learn how to use Positron with Quarto.
2020

21-
Positron comes ready to work with Quarto out-of-the-box --- it includes both the Quarto command line interface and the Quarto VS Code extension.
21+
Positron comes ready to work with Quarto out-of-the-box --- it includes both the Quarto command line interface and the [Quarto VS Code extension](https://open-vsx.org/extension/quarto/quarto).
2222

2323
It includes many tools that enhance working with Quarto, including:
2424

@@ -28,7 +28,7 @@ It includes many tools that enhance working with Quarto, including:
2828

2929
- Positron's full R and Python support for code that is inside a Quarto document, including interactive execution of code in the Console, code completion, help, and diagnostics.
3030

31-
Here's an example Quarto document, `hello.qmd`, open in Positron, demonstrating the seamless side-by-side editing and preview experience:
31+
Here's a sample Quarto document, `hello.qmd`, open in Positron, demonstrating the seamless side-by-side editing and preview experience:
3232

3333
::: {.panel-tabset group="language"}
3434

@@ -63,7 +63,7 @@ If you would like to follow along with this tutorial in your own environment, fo
6363
install.packages("palmerpenguins")
6464
```
6565

66-
2. Download the Quarto document (`.qmd`) below, open it in Positron.
66+
2. Download the Quarto document (`hello.qmd`) below and open it in Positron.
6767

6868
::: {.callout appearance="minimal"}
6969
<i class="bi bi-download"></i> [Download hello.qmd](_positron/r/hello.qmd){download="hello.qmd"}
@@ -77,7 +77,7 @@ If you would like to follow along with this tutorial in your own environment, fo
7777
pip install jupyter plotnine
7878
```
7979

80-
2. Download the Quarto document (`.qmd`) below, open it in Positron.
80+
2. Download the Quarto document (`hello.qmd`) below and open it in Positron.
8181

8282
::: {.callout appearance="minimal"}
8383
<i class="bi bi-download"></i> [Download hello.qmd](_positron/python/hello.qmd){download="hello.qmd"}
@@ -143,7 +143,7 @@ If you prefer the preview to update whenever you save the document, you can chec
143143
144144
The document, `hello.qmd`, is a combination of markdown and executable code cells.
145145
Quarto uses the term *render* to describe the process of taking this source document and producing a new file that combines the output from the executed code cells with the markdown.
146-
When `hello.qmd` is rendered, the new file is `hello.html`, an [HTML](/docs/output-formats/all-formats.qmd) document, but it could be a [PDF](/docs/output-formats/pdf-basics.qmd), [MS Word](/docs/output-formats/ms-word.qmd) document, [presentation](/docs/presentations/index.qmd), [website](/docs/websites/website-basics.qmd), [book](/docs/books/book-basics.qmd), [interactive document](/docs/interactive/index.qmd), or [other format](/docs/output-formats/all-formats.qmd).
146+
When `hello.qmd` is rendered, the new output is `hello.html`, an [HTML](/docs/output-formats/all-formats.qmd) document, but it could be a [PDF](/docs/output-formats/pdf-basics.qmd), [MS Word](/docs/output-formats/ms-word.qmd) document, [presentation](/docs/presentations/index.qmd), [website](/docs/websites/website-basics.qmd), [book](/docs/books/book-basics.qmd), [interactive document](/docs/interactive/index.qmd), or [other format](/docs/output-formats/all-formats.qmd).
147147
148148
This is the basic model for Quarto publishing---take a source document that combines code and narrative, and render it to a variety of output formats.
149149
@@ -169,7 +169,7 @@ The Quarto extension provides Positron commands as convenient alternatives to ru
169169
## Authoring
170170

171171
Let's turn our attention to the contents of our Quarto document.
172-
The file contains three types of content: a header, code cells, and markdown text.
172+
The file contains three types of content: a header, executable code cells, and markdown text.
173173
174174
### Document header
175175
@@ -189,7 +189,7 @@ In this case, the `title` is set to `"Hello, Quarto"` and the `format` is set to
189189
When rendered, the `title`, will appear at the top of the rendered document with a larger font size than the rest of the document.
190190
The `format` field denotes the target format for the output.
191191
192-
Other options commonly found in headers of documents include metadata like `author`, `subtitle`, `date` as well as customization like `theme`, `fontcolor`, `fig-width`, etc.
192+
Other options commonly found in headers of documents include metadata like `author`, `subtitle`, and `date`, as well as customizations like `theme`, `fontcolor`, `fig-width`, etc.
193193
The available options depend on the output format and are listed in the [Reference](/docs/reference) e.g.: [HTML options](/docs/reference/formats/html.qmd), [PDF options](/docs/reference/formats/pdf.qmd) and [MS Word options](/docs/reference/formats/docx.qmd).
194194
195195
### Code cells
@@ -294,8 +294,8 @@ The markdown file generated is then processed by [pandoc](http://pandoc.org/), w
294294
295295
When a Quarto document includes executable code cells,
296296
Quarto uses what is known as an *engine* to execute them.
297-
If you completed this tutorial with R, you'll have been using the `knitr` engine.
298-
If you completed this tutorial with Python, you'll have been using the `jupyter` engine.
297+
If you're following along with this tutorial with R, you have been using the `knitr` engine.
298+
If you're following along with Python, you have been using the `jupyter` engine.
299299
You can read more about how Quarto chooses an engine in [Engine Binding](/docs/computations/execution-options.qmd#engine-binding).
300300
301301
Quarto supports other languages in addition to R and Python for code cells like [Julia](/docs/computations/julia.qmd) (via the `julia` engine or the `jupyter` engine) and [Observable JS](/docs/computations/ojs.qmd).

0 commit comments

Comments
 (0)