#136 Code blocks do not preserve newlines in Javad...
# dokka
u
#136 Code blocks do not preserve newlines in Javadoc HTML output [Kotlin/dokka] Issue created by xenomachina If I have the following KDoc:
Copy code
• This is a test • of Dokka's code blocks • and how they • turn into HTML •
Copy code
```

The resulting Javadoc HTML looks like this:

```<code><pre>This is a test    of Dokka's code blocksand how they    turn into HTML</pre></code>
The
pre
ends up being useless because the newlines are stripped from the output. The expected/desired output is more like:
Copy code
<code><pre>This is a test
    of Dokka's code blocks
and how they
    turn into HTML</pre></code>