-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
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
Javadoc author tags are invalid HTML #1477
Comments
I prefer using Plus when I run |
@axmmisaka: I saw a recent commit somewhere that addresses this, but no corresponding PR? |
BTW, we can also leave out the email addresses... |
I made a new branch but not PR because I don't know 1. if this is satisfactory and 2. if we want to do this (instead of just removing all emails) |
Posting the PR is a way to find out :-) You can ask for reviews... |
I brought this up doing our weekly meeting, and it seemed nobody minded it if we just strip the email addresses. |
Since #1486 was merged long ago I think this can be closed. |
I see everywhere in the codebase these
@author
tags surrounded by braces:lingua-franca/org.lflang/src/org/lflang/TargetProperty.java
Line 58 in efcab96
This is invalid HTML
breaks intellij's Javadoc lexer:
and is rendered improperly:
![image](https://user-images.githubusercontent.com/24524930/202471094-558f0888-30e6-4dea-a7d3-2b70ade0add5.png)
The proper way to write these author tags is without braces, and escaping the <> characters in the email
(or using javadoc's
{@literal ...}
taglet, but this is uglier IMO.)I think we should bulk replace these at some point.
The text was updated successfully, but these errors were encountered: