From ff0e6be0369f2778d33fd7aa4821548745172b80 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 20 Feb 2015 18:56:43 +0100 Subject: process @link and @linkplain tags in javadoc --- test/data/format/javaLinkTag.html | 26 ++++++++++++++++++++++++++ test/data/format/javaLinkTag.java | 8 ++++++++ 2 files changed, 34 insertions(+) create mode 100644 test/data/format/javaLinkTag.html create mode 100644 test/data/format/javaLinkTag.java (limited to 'test/data/format') diff --git a/test/data/format/javaLinkTag.html b/test/data/format/javaLinkTag.html new file mode 100644 index 00000000..65d33283 --- /dev/null +++ b/test/data/format/javaLinkTag.html @@ -0,0 +1,26 @@ + + +test / test.Foo + + +test / test / Foo
+
+

Foo

+open class Foo : Any
+

Call to do the job. +

+
+
+

Functions

+ + + + + + + +
+bar +public open fun bar(): Unit
+ + diff --git a/test/data/format/javaLinkTag.java b/test/data/format/javaLinkTag.java new file mode 100644 index 00000000..06452f16 --- /dev/null +++ b/test/data/format/javaLinkTag.java @@ -0,0 +1,8 @@ +package test; + +/** + * Call {@link #bar()} to do the job. + */ +class Foo { + public void bar() +} -- cgit