-
To setup a project with several extensions or lua filter, I have to run the following command manually quarto install extension quarto-ext/* Will it be ok to specify the extension in the project |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Simply write a bash script in the pre-render option. project:
pre-render:
- install_extensions.sh Doing this, meaning by-passing the security questions is a security breach since you no longer ensure the code provided in the Lua filters/shortcodes is safe. (This code can access the file system) |
Beta Was this translation helpful? Give feedback.
Simply write a bash script in the pre-render option.
See https://quarto.org/docs/projects/scripts.html#pre-and-post-render for details.
Doing this, meaning by-passing the security questions is a security breach since you no longer ensure the code provided in the Lua filters/shortcodes is safe. (This code can access the file system)