Open cderv opened 1 month ago
In our doc, we say the following (https://quarto.org/docs/output-formats/html-multi-format.html#specifying-formats-to-link)
You can also provide format-links items using the same options as Code Links and Other Links.
However, it seems not all option are supported, especially target
options.
It seems we indeed make a difference on what is supported by each type of element https://github.com/quarto-dev/quarto-cli/blob/7a0131d23e5525629de83959cd2d585f28603a92/src/config/types.ts#L737-L758
We currently only handle rel
and target
for other-links
https://github.com/quarto-dev/quarto-cli/blob/7a0131d23e5525629de83959cd2d585f28603a92/src/format/html/format-html-bootstrap.ts#L581-L594
We can probably add target
(e.g. to set target = "_blank")
when customizing format-links
Discussed in https://github.com/quarto-dev/quarto-cli/discussions/10729