Update link to yihui's website (#1518)
This commit is contained in:
parent
1fa97b77ad
commit
72f673c23b
|
@ -118,7 +118,7 @@ This will display the report in the viewer pane as shown in @fig-diamond-sizes-r
|
|||
knitr::include_graphics("quarto/diamond-sizes-report.png")
|
||||
```
|
||||
|
||||
When you render the document, Quarto sends the `.qmd` file to **knitr**, [https://yihui.name/knitr](https://yihui.name/knitr/){.uri}, which executes all of the code chunks and creates a new markdown (`.md`) document which includes the code and its output.
|
||||
When you render the document, Quarto sends the `.qmd` file to **knitr**, [https://yihui.org/knitr/](https://yihui.org/knitr/){.uri}, which executes all of the code chunks and creates a new markdown (`.md`) document which includes the code and its output.
|
||||
The markdown file generated by knitr is then processed by **pandoc**, [https://pandoc.org](https://pandoc.org/){.uri}, which is responsible for creating the finished file.
|
||||
This process is shown in @fig-quarto-flow.
|
||||
The advantage of this two step workflow is that you can create a very wide range of output formats, as you'll learn about in @sec-quarto-formats.
|
||||
|
@ -314,7 +314,7 @@ Each chunk label must be unique.
|
|||
Chunk output can be customized with **options**, fields supplied to chunk header.
|
||||
Knitr provides almost 60 options that you can use to customize your code chunks.
|
||||
Here we'll cover the most important chunk options that you'll use frequently.
|
||||
You can see the full list at [https://yihui.name/knitr/options](https://yihui.name/knitr/options/){.uri}.
|
||||
You can see the full list at [https://yihui.org/knitr/options](https://yihui.org/knitr/options/){.uri}.
|
||||
|
||||
The most important set of options controls if your code block is executed and what results are inserted in the finished report:
|
||||
|
||||
|
|
Loading…
Reference in New Issue