When we create a text description in html, we enter the html code. Then when we export the project to html and look at it in the browser we see the output. I have found that if I add line breaks in my html code that it messes up the html output - some of the tags are not processed. Everything displays properly in yEd, but not in the export (yEd 3.12). Thus, I can do this (and it works perfectly): <html><body><font color="#FF0000">Red Text</font><br><font color="#00FF00">Green Text</font><br></body></html> but not this (which makes the code easier for us to read): <html><body> <font color="#FF0000">Red Text</font> <br> <font color="#00FF00">Green Text</font> <br> </body></html> Is it possible to fix this?