Javadoc多行锚标记

Lan*_*opp 1 html javadoc

我想做这样的事情:

/**
 * Check out this <a href="#">external link</a>!.
 */
 public void foo() {

 }
Run Code Online (Sandbox Code Playgroud)

但是,外部链接的href确实很长,例如:

<a href="http://www.example.com/this/is/a/really/long/link/and/it/doesnt/fit/on/one/line/which/is/problematic/with/javadoc">external link</a>
Run Code Online (Sandbox Code Playgroud)

我符合固定线宽的编码标准。有没有一种使用Javadoc格式化的方法?

Mad*_*iha 5

你为什么不缩短它?

就在我头顶上。