You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/get-started/hello/positron.qmd
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ tool:
18
18
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.
19
19
In this tutorial, you'll learn how to use Positron with Quarto.
20
20
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).
22
22
23
23
It includes many tools that enhance working with Quarto, including:
24
24
@@ -28,7 +28,7 @@ It includes many tools that enhance working with Quarto, including:
28
28
29
29
- 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.
30
30
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:
32
32
33
33
::: {.panel-tabset group="language"}
34
34
@@ -63,7 +63,7 @@ If you would like to follow along with this tutorial in your own environment, fo
@@ -143,7 +143,7 @@ If you prefer the preview to update whenever you save the document, you can chec
143
143
144
144
The document, `hello.qmd`, is a combination of markdown and executable code cells.
145
145
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).
147
147
148
148
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.
149
149
@@ -169,7 +169,7 @@ The Quarto extension provides Positron commands as convenient alternatives to ru
169
169
## Authoring
170
170
171
171
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.
173
173
174
174
### Document header
175
175
@@ -189,7 +189,7 @@ In this case, the `title` is set to `"Hello, Quarto"` and the `format` is set to
189
189
When rendered, the `title`, will appear at the top of the rendered document with a larger font size than the rest of the document.
190
190
The `format` field denotes the target format for the output.
191
191
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.
193
193
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).
194
194
195
195
### Code cells
@@ -294,8 +294,8 @@ The markdown file generated is then processed by [pandoc](http://pandoc.org/), w
294
294
295
295
When a Quarto document includes executable code cells,
296
296
Quarto uses what is known as an *engine* to execute them.
297
-
If you completed this tutorial with R, you'llhavebeenusingthe`knitr`engine.
298
-
IfyoucompletedthistutorialwithPython, you'll have been using the `jupyter` engine.
297
+
If you'refollowingalongwiththistutorialwithR, youhavebeenusingthe`knitr`engine.
298
+
Ifyou're following along with Python, you have been using the `jupyter` engine.
299
299
You can read more about how Quarto chooses an engine in [Engine Binding](/docs/computations/execution-options.qmd#engine-binding).
300
300
301
301
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