-
Hey all, I just stumbled upon Quarto and it looks super cool. I'm pumped! I wanted to ask briefly about how Cross References are handled. At the moment, there are (at least) two syntax forms of cross-references in pandoc-manipulated documents:
Under the hood, I'm also asking, is Quarto using |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Quarto does in fact use syntax very similar to
As such, this is a ground up implementation of rather than a direct re-use of This is implemented as a set of Lua filters, so it is at least in-principle something that could be used by other systems. That said, crossref systems can't really be implemented without a stronger notion of both figures and figure panel layout (both |
Beta Was this translation helpful? Give feedback.
-
Any update on this? Is there any progress in compatibility, or a smooth way to use Quarto crossrefs as standalone lua filters? |
Beta Was this translation helpful? Give feedback.
Quarto does in fact use syntax very similar to
pandoc-crossref
, albeit with a few important differences:#fig-
rather than#fig:
(this is more compatible with Jupyter notebook cell ids, which don't allow:
).As such, this is a ground up implementation of rather than a direct re-use of
pandoc-crossref
This is implemented as a set of Lua filters, so it is at least in-principle something that could be used by other systems. That said, crossref systems can't rea…