Quarto is working, kind of. I can load the library and render the hello.qmd file I got from the quarto website without a problem. But I have no options to create new Quarto files or projects in the IDE. I don't see any configuration settings in Tools->Global Options. I can create the files manually as long as they render, but still...
In my googling I did see some similar reports, but they all seemed old/resolved, and didn't help. At least one seemed a problem specific to Fedora, which I use, but that was pretty old and seemed to be problems with installing quarto, but it's installed fine.
I'm using the 2023.12.1 Build 402 of the IDE on Fedora 39. Quarto version is 1.4.552.
Maybe a more fruitful question might be what YAML would be generated if I did have the option to generate a new Quarto document or project? What is the skeleton?
If you are just using the basic template it lookks like this:
---
title: "Untitled"
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
#| echo: false
2 * 2
The echo: false option disables the printing of code (only output is displayed).
Here is an example of a working Quarto document.
title: "Example"
author: "jrkrideau"
date: today
format: pdf
Thank you. So if I render this in R Studio it ignores the qm commands but otherwise renders the output "normally". If I use quarto preview in my cli it renders properly, respecting the quarto commands.
So I need to make RStudio aware of the quarto installation somehow I think. How do I do that? The executable is in the standard /usr/bin location.