#54 Line wrapping inside code blocks [Kotlin/dokka...
# dokka
u
#54 Line wrapping inside code blocks [Kotlin/dokka] Issue created by ilya-g Code blocks are not treated like preformatted text, line breaks in source gets merged. An example from
kotlin.jvm.Throws
annotation docs:
Copy code
• throws(IOException::class) • fun readFile(name: String): String {...} • `````` gets rendered as Example:
throws(IOException::class)fun readFile(name: String): String {...}
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-throws/