aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/kotlin/format
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-05-18 16:01:52 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-05-18 16:14:02 +0300
commite80b64b122950f2a623ce86ea68abdb0061bed27 (patch)
tree389c43de9470bba6b09e6332096f17c0ad9850c6 /core/src/test/kotlin/format
parent4f4b86b873b7676979d3258030fdfc382e22a06b (diff)
downloaddokka-e80b64b122950f2a623ce86ea68abdb0061bed27.tar.gz
Support reference-style markdown links in KDoc
#KT-17924 fixed
Diffstat (limited to 'core/src/test/kotlin/format')
-rw-r--r--core/src/test/kotlin/format/MarkdownFormatTest.kt8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/src/test/kotlin/format/MarkdownFormatTest.kt b/core/src/test/kotlin/format/MarkdownFormatTest.kt
index e3f4bae78..48b06d6e7 100644
--- a/core/src/test/kotlin/format/MarkdownFormatTest.kt
+++ b/core/src/test/kotlin/format/MarkdownFormatTest.kt
@@ -364,6 +364,14 @@ class MarkdownFormatTest {
verifyMarkdownNode("nestedLists")
}
+ @Test fun referenceLink() {
+ verifyMarkdownNode("referenceLink")
+ }
+
+ @Test fun externalReferenceLink() {
+ verifyMarkdownNode("externalReferenceLink")
+ }
+
@Test fun newlineInTableCell() {
verifyMarkdownPackage("newlineInTableCell")
}