Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 JavaDoc 中,我可以将超链接表示为@see <a href="http://google.com">http://google.com</a>. 在 Kotlin 中如何做到这一点?
@see <a href="http://google.com">http://google.com</a>
好吧,实际上,超链接和标签在KDoc@see中是两个独立的事物,这意味着它仅限于 API 引用:@see
@see
/** * @see [Object.toString] */ class C
超链接本身使用常规的 Markdown 语法(但与JavaDoc不同,不能与@see标签混合):
/** * **See Also:** [Google](http://google.com) */ class C