- 
    
Bug
 - 
    Resolution: Done
 - 
    
P2: Important
 - 
    5.15.2
 - 
    None
 
- 
        
 - 
        362e56b520cd5f3efcc7600d558b515a8aec6a79 (qt/qtbase/dev) f2e5039738557023a921a68ecd5fb81bdb4f2efc (qt/qtbase/6.2)
 
Using a naïve Markdown to HTML converter:
QTextDocument d;
d.setMarkdown(input); // Assume GFM with HTML enabled
std::cout << d.toHtml().toStdString() << std::endl;
The following HTML payload (which is also valid GFM):
<b>x<</b>
gets converted to
<<span style=" font-weight:600;">x</span>
(that's right, the escaped < ends up coming before the bold span). Meanwhile, the following payload:
<b>&</b>
literally strips <b> (or whatever other element it would have been put to), becoming
&
(boilerplate HTML before and after the key portion omitted).
- is duplicated by
 - 
                    
QTBUG-94245 Markdown unexpected render result
-         
 - Closed
 
 -