We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related to discussion at quarto-dev/quarto-cli#9649
Project root should be accessible in QUARTO_PROJECT_ROOT env var. So we could use this information to build a path
QUARTO_PROJECT_ROOT
Something like
```{r} #| label: embedme readLines(xfun::from_root('data.txt', root = Sys.getenv("QUARTO_PROJECT_DIR"))) ```
Though maybe this is just documentation recipe topic has latest here 📦 has a new mechanism quite simple
```{r} #| include: false here::i_am("assets/embed.qmd") ``` ```{r} #| label: embedme readLines(here::here('data.txt')) ```
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Related to discussion at quarto-dev/quarto-cli#9649
Project root should be accessible in
QUARTO_PROJECT_ROOT
env var. So we could use this information to build a pathSomething like
Though maybe this is just documentation recipe topic has latest here 📦 has a new mechanism quite simple
The text was updated successfully, but these errors were encountered: