I need to display a multi-line variable in my angular 4 view (HTML). The problem is I place the HTML tag br / where I want the string to break and starts at a new line but the br / shows up as text instead. I have tried br/, \r br /, ...none of these works. Here is a sample of the text:
FILE CONTENTS
<br /> xxxxx connects buyers of automotive parts and services with providers of those services. This document outline what information we collect from both the buyers and providers and how we handle this information, our privacy policy.<br />1. Scope of this Privacy Policy:<br /> xxxxxx and its parents, subsidiaries, representatives, affiliates, officers and directors (collectively, 'PuppyDog') values the privacy of individuals who use our application, websites, and related services. This privacy policy (the 'Privacy Policy') explains how we collect, use, and share information from xxxxxxx users (('Users'), comprised of both buyers of automotive parts and services and providers of those services.<br />2. Information We Collect-<br />Personal Information-<br />Buyers Registration Information. When you register as a.......
I should point out that the variable from a JSON file using data binding to display the value in the HTML. I would be grateful for any suggestions.