We document this here: https://quarto.org/docs/computations/execution-options.html#unexecuted-blocks but the example does not show the `{{ python }}` as it should Example: `````markdown --- title: "Example" format: html: default --- ```` markdown --- title: "A julia engine notebook" engine: julia --- ```{{{julia}}} 1 + 2 ``` ```` ```{{{julia}}} 1 + 2 ``` ````` Results in  Inside the code block, only two braces `{{ }}` should be removed like for inlines. it is a regression as it works in 1.3 but not in 1.4 Results with 1.3.450 