diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-10-27 03:46:49 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-11-02 17:59:50 +0300 |
commit | e9ab5d88150323067672661d37f8d7f8b146311d (patch) | |
tree | d2528af6c367fc0e22bb9c2cf2009c801cc8c1ea /core/testdata/format/indentedCodeBlock.kt | |
parent | d6d320eb13a24fb8e70df0ba11effabe429f0fd4 (diff) | |
download | dokka-e9ab5d88150323067672661d37f8d7f8b146311d.tar.gz dokka-e9ab5d88150323067672661d37f8d7f8b146311d.tar.bz2 dokka-e9ab5d88150323067672661d37f8d7f8b146311d.zip |
#228: Correctly render multiline indented code blocks
Fix #228
Diffstat (limited to 'core/testdata/format/indentedCodeBlock.kt')
-rw-r--r-- | core/testdata/format/indentedCodeBlock.kt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/testdata/format/indentedCodeBlock.kt b/core/testdata/format/indentedCodeBlock.kt new file mode 100644 index 00000000..19c5365b --- /dev/null +++ b/core/testdata/format/indentedCodeBlock.kt @@ -0,0 +1,10 @@ +/** + * Create a new Foo value as follows: + * + * val foo = Foo.create { + * type { "ABC" } + * } + */ +fun foo() { + +}
\ No newline at end of file |