From 7922e2a940f91b587c70dfb3d41e0048bc93a19e Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Tue, 1 Nov 2016 20:31:16 +0300 Subject: Fix for GH #97 : Preserve language name of fenced code block for highlight --- core/testdata/comments/codeBlockComment.kt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 core/testdata/comments/codeBlockComment.kt (limited to 'core/testdata/comments/codeBlockComment.kt') 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 -- cgit