From 7fc1cb4f31d31344a33a9cce438f36f567a7a4d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Thu, 23 Jan 2025 18:03:38 +0100 Subject: [PATCH 1/2] docs: move link outside of footnote --- docs/get-started/computations/rstudio.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/get-started/computations/rstudio.qmd b/docs/get-started/computations/rstudio.qmd index 1bd4556cb1..3925a01924 100644 --- a/docs/get-started/computations/rstudio.qmd +++ b/docs/get-started/computations/rstudio.qmd @@ -232,7 +232,7 @@ See the documentation on [Article Layout](/docs/authoring/article-layout.qmd) to ## Inline Code -To include executable expressions within markdown, enclose the expression in `` `{r} ` ``^[Quarto also supports the Knitr syntax `` `r ` ``, read more in [Inline Code](/docs/computations/inline-code.qmd)]. +To include executable expressions within markdown, enclose the expression in `` `{r} ` ``^[Quarto also supports the Knitr syntax `` `r ` ``.], read more in [Inline Code](/docs/computations/inline-code.qmd). For example, we can use inline code to state the number of observations in our data. Try adding the following markdown text to your Quarto document. From 7f091ce60e44626a016dead1243426ed532890b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Fri, 24 Jan 2025 18:50:27 +0100 Subject: [PATCH 2/2] refactor: move example entence down, rephrase link to doc, keep link in footnote --- docs/get-started/computations/rstudio.qmd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/get-started/computations/rstudio.qmd b/docs/get-started/computations/rstudio.qmd index 3925a01924..48b577f301 100644 --- a/docs/get-started/computations/rstudio.qmd +++ b/docs/get-started/computations/rstudio.qmd @@ -232,7 +232,9 @@ See the documentation on [Article Layout](/docs/authoring/article-layout.qmd) to ## Inline Code -To include executable expressions within markdown, enclose the expression in `` `{r} ` ``^[Quarto also supports the Knitr syntax `` `r ` ``.], read more in [Inline Code](/docs/computations/inline-code.qmd). +To include executable expressions within markdown, enclose the expression in `` `{r} ` ``^[Quarto also supports the Knitr syntax `` `r ` ``, read more in [Inline Code](/docs/computations/inline-code.qmd)]. +For additional details on inline code expressions, please visit the [Inline Code](/docs/computations/inline-code.qmd) documentation. + For example, we can use inline code to state the number of observations in our data. Try adding the following markdown text to your Quarto document.