-
Just wondering whether I'm missing something or whether it is actually not possible to run a Julia script using the 'pre-render' field in a _quarto.yml? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
You're correct, it's currently not possible to do so. The support for pre-render scripts goes through the same code path as
Julia is very likely to be our third most popular code language, but we are reluctant to add general I agree that there's a strong case for Julia based on its popularity! But note that we support I think we could change our position, but we currently have no plans to add this feature. |
Beta Was this translation helpful? Give feedback.
-
is it possible (/could it be) to run shell scripts ( |
Beta Was this translation helpful? Give feedback.
You're correct, it's currently not possible to do so. The support for pre-render scripts goes through the same code path as
quarto run
, andquarto run
does not support Julia.quarto run
only supports the languages necessary for quarto's engines and its dependencies:knitr
requires R,jupyter
requires Python, and the base "non-engine"markdown
requires deno (so we support typescript). Finally, we support Lua since Pandoc does so.Julia is very likely to be our third most popular code language, but we are reluctant to add general
quarto run
support to languages not required by our engines, mostly because it's not clear where we should stop.I agree that there's a strong case for Julia based…