From 2e5b40d69e15c30474cf8564b08587f15ed8e383 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 28 Apr 2016 12:58:06 +0200 Subject: correctly render Markdown in link text (KT-11791) --- core/testdata/format/markdownInLinks.html | 15 +++++++++++++++ core/testdata/format/markdownInLinks.kt | 4 ++++ 2 files changed, 19 insertions(+) create mode 100644 core/testdata/format/markdownInLinks.html create mode 100644 core/testdata/format/markdownInLinks.kt (limited to 'core/testdata') diff --git a/core/testdata/format/markdownInLinks.html b/core/testdata/format/markdownInLinks.html new file mode 100644 index 00000000..38158eac --- /dev/null +++ b/core/testdata/format/markdownInLinks.html @@ -0,0 +1,15 @@ + + +foo - test + + +test / foo
+
+

foo

+ +fun foo(): Unit
+

abdkas

+
+
+ + diff --git a/core/testdata/format/markdownInLinks.kt b/core/testdata/format/markdownInLinks.kt new file mode 100644 index 00000000..67b6311f --- /dev/null +++ b/core/testdata/format/markdownInLinks.kt @@ -0,0 +1,4 @@ +/** + * [a**b**__d__ kas ](http://www.ibm.com) + */ +fun foo() {} -- cgit