mhaack / helix-importer

Foundation tools for importing website content into that can be consumed in an Helix project.
Apache License 2.0
0 stars 3 forks source link

Paragraphs with bold or em and text must be converted as paragraphs #36

Closed mhaack closed 2 weeks ago

mhaack commented 2 weeks ago

The current logic detects these as a button which is wrong and these must be normal text paragraphs not button.


        <p><em>Some italic text.</em></p>
        <p><strong>Some bold text.</strong></p>
        <p><em>Some italic text with a link <a href="https://www.adobe.com">Link</a> 1234.</em></p>
        <p><strong>Some bold text with a link <a href="https://www.adobe.com">Link</a> 1234.</strong></p>

Rule: A <p><strong> or <p><em>are only considered as buttons if they have only 1 child element which is the <a> tag.