You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Java generator wraps proto comments in <pre> tag and also html-escapes the comment value.
For example, this proto definition:
// <p>a comment</p>
message MyMessage {
}
is compiled into this Java source:
/**
* Protobuf type {@code chronos.proto.MyMessage}
*
* <pre>
* <p>a comment</p>
* </pre>
*/
public static final class MyMessage extends ...
Please change the generator behavior or add an option that will disable this behavior.
When it is enabled, proto comments should be converted into javadoc as is, without wrapping it in any additional tags or performing any escaping.