I have one rich text column containing some information.
Please see screenshot above. First one is visible via Text component. It shows proper line breaks etc. but shows html tags
Second one is visible via rich text component. It shows formatting properly but all line breaks are gone.
I want to show this paragraph in proper formatting with linebreaks. Can someone help?
As Uzo pointed out, you just need to add appropriate HTML tags to use in the Rich Text component. So for example, your list would need to be formatted something like:
<ol type="i">
<li> Listed companies...</li>
<li> companies having paid up...</li>
<li> companies having turnover...</li>
<li> all companies which are...</li>
</ol>