From 72f673c23bf238bce24359ccb00f6d45dec76197 Mon Sep 17 00:00:00 2001 From: olivroy <52606734+olivroy@users.noreply.github.com> Date: Tue, 6 Jun 2023 21:06:33 -0400 Subject: [PATCH] Update link to yihui's website (#1518) --- quarto.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quarto.qmd b/quarto.qmd index 297234b..a84ff48 100644 --- a/quarto.qmd +++ b/quarto.qmd @@ -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: