The commenting field on bugs dot kde dot org features both a comment tab and a preview tab, which implies that some formatting is supported, but what kind of formatting ?
I tried Markdown but didn’t notice anything getting formatted, except for something weird with quotes being turned into code blocks with the > symbol remaining visible.
I also tried finding out what webapp is bugs dot kde dot org running so I could find out in its documentation, but it’s never mentioned in the footer nor linking to something like an “about” page, not even in preferences.
PS : I’m writing “bugs dot kde dot org” because for some reason the real thing is considered a “link” and forbidden to submit.
@KaKi87, it is indeed. It’s Bugzilla-specific syntax - to a Markdown author, it doesn’t make much sense. However, it does disable word wrap, so it functions like a <pre>.
Unfortunately, it’s not even converted into semantic HTML:
test 1
> block
test 2
…becomes:
<pre id="comment_preview_text" class="bz_comment_text">test 1
<span class="quote">> block</span>
test 2</pre>
…(or whatever actually is correct - I’m not a brilliant web developer).
It might be caused by the old Bugzilla version that KDE is running, since Harmony isn’t ready yet for production systems. Perhaps test whether Log in to Bugzilla does it correctly.
Luckily, in Mozilla’s bugzilla instance, which Harmony should be catching up with (because they develop it, to my knowledge) Markdown is supported.