aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/linksInHeaders.kt
diff options
context:
space:
mode:
Diffstat (limited to 'core/testdata/format/linksInHeaders.kt')
-rw-r--r--core/testdata/format/linksInHeaders.kt24
1 files changed, 24 insertions, 0 deletions
diff --git a/core/testdata/format/linksInHeaders.kt b/core/testdata/format/linksInHeaders.kt
new file mode 100644
index 00000000..18efd34b
--- /dev/null
+++ b/core/testdata/format/linksInHeaders.kt
@@ -0,0 +1,24 @@
+/**
+ * Some class with really useless documentation.
+ *
+ * # Beer o'clock - time to go to the [Bar]
+ *
+ * ## But __is [it](isitbeeroclock.com)__ really?
+ *
+ * ### [Bar.hello] to the [Bar.world]!
+ *
+ * #### _Kotlin is amazing, [Bar.none]_
+ *
+ * ##### We need to go [Bar.deeper]
+ *
+ * ###### End of the [Bar.line] - we need to go back!
+ */
+class Bar {
+ fun foo() {}
+ fun hello() {}
+ fun world() {}
+ fun kotlin() {}
+ fun none() {}
+ fun deeper() {}
+ fun line() {}
+}