Closed
Description
Search terms
link,mail
Question
Want to add the mail address of the author in the comment, but typedoc complains. The file header comment is:
/**
* Creating/closing windows and setup communications to them
* @packageDocumentation
* @author [John Doe](mailto:jdoe\@example.com)
*/
And the error is:
./src/electron/modules/WindowsUtilities.ts:6:25 - [warning] The relative path mailto:[email protected] does not exist
Tried also with {@link mailto:jdoe\@example.com}
with the same result. Seems the only solution is to put the mail address as a normal string:
* @author John Doe "jdoe\@example.com"
Any suggestion?
Thanks!
mario