In a Node.js Express web app, I would like to include a link to some documentation in one of my views, and show the URL as the anchor text. Following Jade: Links inside a paragraph, I tried:
p See #[a(href="http://example.com/help/123") http://example.com/help/123]
However, that causes an error, "The end of the string was reached with no closing bracket found."
If I put quotes around the anchor text, it mostly works, but I end up with quotes visible in the HTML output, which I don't want.
p See #[a(href="http://example.com/help/123") "http://example.com/help/123"]
Is something about the unquoted URL messing up the evaluation of the stuff inside the brackets? If so, can I escape it somehow to prevent the problem?