Skip to content

Commit

Permalink
First version of a Quarto doc
Browse files Browse the repository at this point in the history
  • Loading branch information
gmperez committed Jun 30, 2023
1 parent 8bfa4fe commit 0b6ccde
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions test_quarto-doc.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
title: "Test - First Quarto Document"
author: "Giovanni M Perez"
format: html
editor: visual
---

## Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.

## Running Code

When you click the **Render** button a document will be generated that includes both content and the output of embedded code. You can embed code like this:

```{r}
1 + 1
```

You can add options to executable code like this

```{r}
#| echo: false
2 * 2
```

The `echo: false` option disables the printing of code (only output is displayed).

0 comments on commit 0b6ccde

Please sign in to comment.