Closed jhidding closed 3 months ago
id can now be passed through quarto attribute like so:
``` {.python} #| id: set-answer answer = 42 ```
incidentally enables support for Typst, markers need to be set in entangled.toml:
entangled.toml
version="2.0" watch_list=["*.typ"] hooks=["quarto_attributes"] [markers] open="^(?P<indent>\\s*)```(?P<properties>.*)$" close="^(?P<indent>\\s*)```\\s*$"
id can now be passed through quarto attribute like so:
incidentally enables support for Typst, markers need to be set in
entangled.toml
: