From 832da982d36ca6f56578c1ca0188f805662d5a94 Mon Sep 17 00:00:00 2001 From: Aymeric Stamm Date: Fri, 19 Dec 2025 13:53:19 +0100 Subject: [PATCH] Some minor changes --- site/guidelines-authors.qmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/guidelines-authors.qmd b/site/guidelines-authors.qmd index d47d47f..767a626 100644 --- a/site/guidelines-authors.qmd +++ b/site/guidelines-authors.qmd @@ -35,7 +35,7 @@ This document provides a comprehensive documentation to accompany the authors du - **Writing Your Contribution**: - Main content goes in `template-computo-LANG.qmd`. - Metadata (title, authors, abstract, etc.) is set in `_quarto.yml`. - - Edit using any text editor or IDE (VS Code/RStudio recommended). + - Edit using any text editor or IDE (VS Code/RStudio/Positron recommended). - **Dependencies**: - Freeze package versions for reproducibility. @@ -153,7 +153,7 @@ quarto add computorg/computo-quarto-extension If you are collaborating with others when writing your contributions, **each collaborator** needs to perform these same three steps (clone the repository, install Quarto and install the Computo Quarto extension). ::: -::: {.callout-tip title="Multiple languages"} +::: {.callout-tip title="Multiple programming languages"} Quarto relies on a specific engine to compile your document. By default, that engine detects code blocks, executes them and paste the result below the code block in the rendered document. It is possible to use multiple languages within the same document (e.g. R and Python or Python and Julia, etc.) provided that you use the **knitr** engine. Indeed, [**knitr**](https://yihui.org/knitr/) is an R package that is able to parse code blocks from many languages. This can be achieved by specifying `engine: knitr` in your document metadata. The default engine binding that Quarto uses is detailed here: . @@ -174,7 +174,7 @@ There are mainly two files you are expected to modify in your repository for wri ::: {.callout-tip} ## Editing your project -You can edit your project using any text editor, but we recommend using an IDE such as [vsCode](https://code.visualstudio.com/) or [RStudio](https://posit.co/download/rstudio-desktop/). These IDEs provide syntax highlighting, code completion, and other features that make editing Quarto files easier. +You can edit your project using any text editor, but we recommend using an IDE such as [VS Code](https://code.visualstudio.com/), [RStudio](https://posit.co/download/rstudio-desktop/) or, even better, [Positron](https://positron.posit.co/download.html). These IDEs provide syntax highlighting, code completion, and other features that make editing Quarto files easier. ::: #### Metadata of your contribution