我遇到这样的情况:
/**
* A Class.
*
* [Google] and [Wikipedia] enter a bar.
*
* [Google]: https://www.google.com
* [Wikipedia]: https://en.wikipedia.org
*/
class MyClass {
// ...
}
/**
* Another class.
*
* I want to know more about [Google] and [Wikipedia].
*
* [Google]: https://www.google.com
* [Wikipedia]: https://en.wikipedia.org
*/
class AnotherClass {
// ...
}
如您所见,最好为我的“ 书目”提供唯一的资源,而不是在每个typedoc中重复相同的链接。有什么方法可以实现?
答案 0 :(得分:0)
在文档的顶部,您可以按以下格式以正确的格式添加外部链接,因此无需一次又一次地重复添加链接。
/**
* @author Daniele Repici
* @version 1.0
* @since 2019/09/18
* [FormArray]: <a href="https://angular.io/api/forms/FormGroup</a>
* [FormArray]: <a href="https://angular.io/api/forms/FormArray</a>
*/
请勿使用{@link ...}或{@linkplain ...},因为它们是指向其他类和方法的javadocs的链接。