-
DescriptionHi, I'm very new to Quarto and I need help to understand some coding basics. In my -quarto.yml file, I would like to use the options for external links as follows:
This works. But I would also like to add more links to the link-external-filter option. I tried something like this:
But I get the following error message:
I don't understand what it is suggesting me to do. Thank you for your help! Best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
link-external-filter: '^(?:http:|https:)\/\/www\.quarto\.org\/custom' This is a string provided to the option. link-external-filter:
- '^(?:http:|https:)\/\/www\.quarto\.org\/custom' This is an array of strings. The string is a regular expression as explained in the documentation. link-external-filter: '^(?:http:|https:)\/\/(www\.quarto\.org|www\.doi\.org)\/custom' |
Beta Was this translation helpful? Give feedback.
It works just fine.
Please provide as I do a small and complete reproducible example of this not working.
There is nothing we can do with screenshots.