- Notifications
You must be signed in to change notification settings - Fork47
Open
Description
Hello!
First of all, thank you for this package. I have been using it for some time, and it is a great tool!:)
I sometimes create multiple presentations within a single RStudio project with their own assets. The file structure looks like this:
ProjectFolder/├── project.Rproj└── presentations/ ├── presentation01/ │ ├── presentation.qmd │ └── assets/ └── presentation02/ ├── presentation.qmd └── assets/If I want to access files from theassets folder, I need to do the following (in each .qmd file)
here::i_am("presentations/presentation01/presentation.qmd")# Accessing assetshere::here("presentations/presentation01/assets/...")
You might see where I am going with this - I always need to write the initial path to the file. I am proposing a new function calledhere::right_here() (or any other - any suggestions are welcome!) that would not require the path. The new workflow would then look like this:
here::i_am("presentations/presentation01/presentation.qmd")# Proposed functionhere::right_here("assets/...")
If you feel this function is useful and fits this package, I will gladly help with the implementation:)
What do you think?
Metadata
Metadata
Assignees
Labels
No labels