Two issues with TTMSFMXRichEditorHTMLIO

Using TTMSFMXRichEditorHTMLIO with TTMSFMXRichEditor.from FMX UI Pack 3.7.8.1 in a Windows 32bit build within Delphi 11 and Windows 10.

Issue 1: DIV's are not causing line breaks. As I understand HTML, they should by default but maybe you don't support the DIV element?

Issue 2: Given the following HTML, the first anchor is not coming out as a hyperlink in the RichEditor. I'm using TMSFMXRichEditorHTMLIO1.Load('C:\data\test.htm');

<html>
<head></head><body>
<div style="line-height:1.00;text-indent:0.00in;margin-left:0.00in;margin-right:0.00in;"><i><span style="font-family:'Arial';font-size:10.00pt;">Type of Foundation(s)</span></i><span style="font-family:'Arial';font-size:10.00pt;">:</span><span style="color:black;font-family:'Arial';font-size:10.00pt;"> </span><a href="$picklist:{1ffedf59-3c67-4ba9-8b3a-d81d5702d150}">Foundation Types</a></div>
<div style="line-height:1.00;"><i><span style="font-family:'Arial';font-size:10.00pt;">Comments</span></i><span style="font-family:'Arial';font-size:10.00pt;">:</span></div>
<div style="line-height:1.00;font-family:'Arial';font-size:11.00pt;"><span style="font-family:'Arial';font-size:11.00pt;">&nbsp;</span></div>
<div style="line-height:1.00;text-indent:0.00in;margin-left:0.00in;margin-right:0.00in;"><a name="UserTOC_35c0be8f-8162-472f-83e0-e4fbcb23086b:This is some user BM"></a></div>
<div style="line-height:1.00;text-indent:0.00in;margin-left:0.00in;margin-right:0.00in;"><a href="$picklist:{da154a5d-d54f-45f2-9751-0f914ddf6bdb}"><span style="font-family:'Arial';font-size:11.00pt;">Heating Energy Sources</span></a></div>
</body></html>

image
Note that the 2nd anchor tag does not have an HREF. If I remove that DIV containing the particular anchor tag, it then properly marks the first anchor tag as a hyperlink:

<html>
<head></head><body>
<div style="line-height:1.00;text-indent:0.00in;margin-left:0.00in;margin-right:0.00in;"><i><span style="font-family:'Arial';font-size:10.00pt;">Type of Foundation(s)</span></i><span style="font-family:'Arial';font-size:10.00pt;">:</span><span style="color:black;font-family:'Arial';font-size:10.00pt;"> </span><a href="$picklist:{1ffedf59-3c67-4ba9-8b3a-d81d5702d150}">Foundation Types</a></div>
<div style="line-height:1.00;"><i><span style="font-family:'Arial';font-size:10.00pt;">Comments</span></i><span style="font-family:'Arial';font-size:10.00pt;">:</span></div>
<div style="line-height:1.00;font-family:'Arial';font-size:11.00pt;"><span style="font-family:'Arial';font-size:11.00pt;">&nbsp;</span></div>
<div style="line-height:1.00;text-indent:0.00in;margin-left:0.00in;margin-right:0.00in;"><a href="$picklist:{da154a5d-d54f-45f2-9751-0f914ddf6bdb}"><span style="font-family:'Arial';font-size:11.00pt;">Heating Energy Sources</span></a></div>
</body></html>

image