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/comments/codeBlockComment.kt | |
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/comments/codeBlockComment.kt')
-rw-r--r-- | core/testdata/comments/codeBlockComment.kt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/core/testdata/comments/codeBlockComment.kt b/core/testdata/comments/codeBlockComment.kt new file mode 100644 index 00000000..aa5f5ffc --- /dev/null +++ b/core/testdata/comments/codeBlockComment.kt @@ -0,0 +1,14 @@ +/** + * ``` brainfuck + * ++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>. + * ``` + */ +val prop1 = "" + + +/** + * ``` + * a + b - c + * ``` + */ +val prop2 = ""
\ No newline at end of file |