I am working on a TypeScript project and using TypeDoc to create documentation. There is an external library in my project that already has its documentation. I want to automatically link the reader to the documentation of this external library without manually adding URLs in the output generated by TypeDoc.
I've tried enclosing the references in double brackets in code comments like this:
/** Link to [[Foo]] */
However, this method doesn't work for types in the external library. Is there a way to achieve this desired outcome?