For some reason I can't seem to get line breaks in...
# announcements
a
For some reason I can't seem to get line breaks in my kotlin documentation
Wait, I have to have an entire separate blank line for a linebreak?
d
Yep. That's how markdown works.
a
Interesting...I thought there were break tags?
I've used markdown before and I remember using break tags. No I'm not thinking of html
a
what kind of break tags?
a
<br />
a
that works only when you convert Markdown into HTML
and is not part of Markdown
a
Ah okay that makes sense then
What about code blocks? I've seen it used in the sdk, but is this the same situation as was mentioned with break tags? Or am I just missing something? I use <pre><code> with their respective end tags and when I look in the quickdoc, I don't see the code block. None of the code I put in the block is showing either
t
markdown has ` ``` ` to format stuff. I don't know how kotlin docs handle that.