diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-03-09 17:47:09 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-03-20 18:20:19 +0300 |
commit | 2eb805e47505388c0e47102e9257f6f79681e699 (patch) | |
tree | b50cc77717f4c9565579419ad197f21ec7938d24 /core/testdata/format/website-html/sampleWithAsserts.html | |
parent | 8eff2cf33d1ba671191d6e2873f005e6b5f7057e (diff) | |
download | dokka-2eb805e47505388c0e47102e9257f6f79681e699.tar.gz dokka-2eb805e47505388c0e47102e9257f6f79681e699.tar.bz2 dokka-2eb805e47505388c0e47102e9257f6f79681e699.zip |
Create HTML based format for kotlin-website
Diffstat (limited to 'core/testdata/format/website-html/sampleWithAsserts.html')
-rw-r--r-- | core/testdata/format/website-html/sampleWithAsserts.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/testdata/format/website-html/sampleWithAsserts.html b/core/testdata/format/website-html/sampleWithAsserts.html new file mode 100644 index 00000000..012f91ab --- /dev/null +++ b/core/testdata/format/website-html/sampleWithAsserts.html @@ -0,0 +1,12 @@ +<div class='api-docs-breadcrumbs'><a href="test/index">test</a> / <a href="test/a">a</a></div> +<h1>a</h1> +<a name="$a()"></a> +<div class="signature"><code><span class="keyword">fun </span><span class="identifier">a</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">String</span></code></div> +<div class="sample"><pre><code class="lang-kotlin"> + +fun main(args: Array<String>) { +//sampleStart +println(a()) // Hello, Work +println("a() == b() is ${a() == b()}") // true +//sampleEnd +}</code></pre></div> |