diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-11-10 18:55:14 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-11-14 14:06:29 +0300 |
commit | dc99d1fd5c066ac6083f09e23e52cf6c592768e4 (patch) | |
tree | 3c8fa7d3fe895f0c360d071beb1b56f8bb7c25f3 /core/testdata/format | |
parent | af81d5a311125fc30dcf9c14fc9bd9c8680e532b (diff) | |
download | dokka-dc99d1fd5c066ac6083f09e23e52cf6c592768e4.tar.gz dokka-dc99d1fd5c066ac6083f09e23e52cf6c592768e4.tar.bz2 dokka-dc99d1fd5c066ac6083f09e23e52cf6c592768e4.zip |
Added //sampleStart //sampleEnd to samples on kotlin website
Diffstat (limited to 'core/testdata/format')
-rw-r--r-- | core/testdata/format/website/sample.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/testdata/format/website/sample.md b/core/testdata/format/website/sample.md index 374303c0..203f1b02 100644 --- a/core/testdata/format/website/sample.md +++ b/core/testdata/format/website/sample.md @@ -17,9 +17,14 @@ applied to each element and returns a map where each group key is associated wit <div class="sample" markdown="1"> ``` kotlin + +fun main(args: Array<String>) { +//sampleStart if (true) { println(property) } +//sampleEnd +} ``` </div> |