We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
link,mail
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:jdoe@example.com 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:
{@link mailto:jdoe\@example.com}
* @author John Doe "jdoe\@example.com"
Any suggestion? Thanks! mario
The text was updated successfully, but these errors were encountered:
That's a bug, TypeDoc shouldn't be recognizing that as a relative link
Sorry, something went wrong.
918d8aa
Correct handling of mailto: links
mailto:
472cc52
Resolves #2613
No branches or pull requests
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:
And the error is:
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:Any suggestion?
Thanks!
mario
The text was updated successfully, but these errors were encountered: