94770f8447
Expanded code blocks lexer test, to cover indented code blocks
21 lines
403 B
Kotlin
Vendored
21 lines
403 B
Kotlin
Vendored
/**
|
|
* @foo This is text.
|
|
* This is indented code block
|
|
* Second line of code block
|
|
* @foo This is text.
|
|
* Tabulated code block
|
|
* Tabulated second line
|
|
* @foo This is text.
|
|
* ``` kotlin
|
|
* @foo This is code block.
|
|
* ```
|
|
* @foo This is text.
|
|
* ~~~
|
|
* @foo This is code block
|
|
* With multiple lines.
|
|
* ~~~
|
|
* @foo This is yet more text.
|
|
* ```
|
|
* @foo This is an unclosed code block.
|
|
*/
|