Currently, when setting
gradio:
cdn: "https://cdn.jsdelivr.net/npm/@gradio/lite"
gradio.cdn will be parsed to https://cdn.jsdelivr.net/npm/ since the @gradio/lite chunk of the srting will be interpreted by Pandoc as an inline citation. Right now, to make things work as expected, all the @ chars must be escaped via \\@ so that it is taken as inline string value.
The metadata parser module should handle this automatically, users should not be forced to escape regular characters.
Currently, when setting
gradio.cdnwill be parsed tohttps://cdn.jsdelivr.net/npm/since the@gradio/litechunk of the srting will be interpreted by Pandoc as an inline citation. Right now, to make things work as expected, all the@chars must be escaped via\\@so that it is taken as inline string value.The metadata parser module should handle this automatically, users should not be forced to escape regular characters.