aboutsummaryrefslogtreecommitdiff
path: root/test/data
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-02-10 18:11:15 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-02-10 18:11:15 +0100
commit92075236fb1356fe6023edff1e43fe3125b76c18 (patch)
tree00f97e05d2751bec65692f640ea56fb80a6d329d /test/data
parentf93ff9c31a815a448b03c3d76d21fd0a6d45c58d (diff)
downloaddokka-92075236fb1356fe6023edff1e43fe3125b76c18.tar.gz
dokka-92075236fb1356fe6023edff1e43fe3125b76c18.tar.bz2
dokka-92075236fb1356fe6023edff1e43fe3125b76c18.zip
fix handling of triple backticks
Diffstat (limited to 'test/data')
-rw-r--r--test/data/format/tripleBackticks.html18
-rw-r--r--test/data/format/tripleBackticks.kt7
2 files changed, 25 insertions, 0 deletions
diff --git a/test/data/format/tripleBackticks.html b/test/data/format/tripleBackticks.html
new file mode 100644
index 00000000..ad4251a9
--- /dev/null
+++ b/test/data/format/tripleBackticks.html
@@ -0,0 +1,18 @@
+<HTML>
+<HEAD>
+<title>test / f</title>
+</HEAD>
+<BODY>
+<a href="out.html">test</a>&nbsp;/&nbsp;<a href="out.html"></a>&nbsp;/&nbsp;<a href="out.html">f</a><br/>
+<br/>
+<h1>f</h1>
+<pre><code><span class="keyword">fun </span><span class="identifier">f</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code></pre><p>Description</p>
+<br/>
+<br/>
+<h3>Description</h3>
+<pre><code>
+code sample
+</code></pre><br/>
+<br/>
+</BODY>
+</HTML>
diff --git a/test/data/format/tripleBackticks.kt b/test/data/format/tripleBackticks.kt
new file mode 100644
index 00000000..54dfa6d5
--- /dev/null
+++ b/test/data/format/tripleBackticks.kt
@@ -0,0 +1,7 @@
+/**
+ * Description
+ * ```
+ * code sample
+ * ```
+ */
+fun f() {}