diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-11-01 20:31:16 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-11-01 20:31:16 +0300 |
commit | 7922e2a940f91b587c70dfb3d41e0048bc93a19e (patch) | |
tree | 28055ed18f6eac89419e75f3e6fd18f05ba0bcf1 /core/testdata/format/codeBlock.html | |
parent | ee824b90249fd1d6d868af998c6826df31ab557b (diff) | |
download | dokka-7922e2a940f91b587c70dfb3d41e0048bc93a19e.tar.gz dokka-7922e2a940f91b587c70dfb3d41e0048bc93a19e.tar.bz2 dokka-7922e2a940f91b587c70dfb3d41e0048bc93a19e.zip |
Fix for GH #97 : Preserve language name of fenced code block for highlight
Diffstat (limited to 'core/testdata/format/codeBlock.html')
-rw-r--r-- | core/testdata/format/codeBlock.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/core/testdata/format/codeBlock.html b/core/testdata/format/codeBlock.html new file mode 100644 index 00000000..b3b65dba --- /dev/null +++ b/core/testdata/format/codeBlock.html @@ -0,0 +1,20 @@ +<HTML> +<HEAD> +<meta charset="UTF-8"> +</HEAD> +<BODY> +<a href="test/index">test</a> / <a href="test/-throws/index">Throws</a><br/> +<br/> +<h1>Throws</h1> +<code><span class="keyword">class </span><span class="identifier">Throws</span></code> +<p>This annotation indicates what exceptions should be declared by a function when compiled to a JVM method.</p> +<p>Example:</p> +<pre><code>Throws(IOException::class) +fun readFile(name: String): String {...}</code></pre><a href="test/index">test</a> / <a href="test/-it-does-some-obfuscated-thing/index">ItDoesSomeObfuscatedThing</a><br/> +<br/> +<h1>ItDoesSomeObfuscatedThing</h1> +<code><span class="keyword">class </span><span class="identifier">ItDoesSomeObfuscatedThing</span></code> +<p>Check output of</p> +<pre><code class="lang-brainfuck">++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.</code></pre> +</BODY> +</HTML> |