I am looking to display smaller text on my website. I have considered creating a custom pipe to truncate strings, but in my situation it's not applicable. Here's what I'm dealing with:
<p [innerHTML]="aboutUs"></p>
Due to the tags present in the text coming from the backend, using a custom pipe is not an option for me. I need to use [innerHtml] to render the content correctly. Any advice would be appreciated.