diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-10 18:11:15 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-10 18:11:15 +0100 |
commit | 92075236fb1356fe6023edff1e43fe3125b76c18 (patch) | |
tree | 00f97e05d2751bec65692f640ea56fb80a6d329d /test/data | |
parent | f93ff9c31a815a448b03c3d76d21fd0a6d45c58d (diff) | |
download | dokka-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.html | 18 | ||||
-rw-r--r-- | test/data/format/tripleBackticks.kt | 7 |
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> / <a href="out.html"></a> / <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() {} |