From 25592f52ea3e70e183a2a72bc411346b1650ed9a Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Mon, 9 Feb 2015 21:05:56 +0100 Subject: correctly render @see links --- test/data/format/see.html | 27 +++++++++++++++++++++++++++ test/data/format/see.kt | 12 ++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 test/data/format/see.html create mode 100644 test/data/format/see.kt (limited to 'test/data/format') diff --git a/test/data/format/see.html b/test/data/format/see.html new file mode 100644 index 00000000..fa283363 --- /dev/null +++ b/test/data/format/see.html @@ -0,0 +1,27 @@ + + + + +test /  / quux
+
+

quux

+
fun quux(): Unit

+
+
+
+See Also
+

foo

+

bar

+
+test /  / foo
+
+

foo

+
fun foo(): Unit

+
+test /  / bar
+
+

bar

+
fun bar(): Unit

+
+ + diff --git a/test/data/format/see.kt b/test/data/format/see.kt new file mode 100644 index 00000000..a0b153b0 --- /dev/null +++ b/test/data/format/see.kt @@ -0,0 +1,12 @@ +/** + * @see foo + * @see bar + */ +fun quux() { +} + +fun foo() { +} + +fun bar() { +} \ No newline at end of file -- cgit