render Markdown and support link navigation in KDoc comments

This commit is contained in:
Dmitry Jemerov
2015-03-10 16:30:13 +01:00
parent 99fb75c943
commit 853fce4b71
23 changed files with 387 additions and 47 deletions
@@ -0,0 +1,20 @@
/**
* @see C
* @see D
*/
fun testMethod() {
}
class C {
}
class D {
}
fun test() {
<caret>testMethod(1, "value")
}
//INFO: <b>internal</b> <b>fun</b> testMethod(): Unit<br/><p>
//INFO: <DD><DL><DT><b>See Also:</b><DD><a href="psi_element://C"><code>C</code></a>, <a href="psi_element://D"><code>D</code></a></DD></DL></DD></p>