I'm using ngx-translate.
How can I put a line break in a standard html tooltip to translate ?
In my template I have :
<div [title]="'TOOLTIP_STRING' | translate">hover here</div>
In my en.json:
{
"TOOLTIP_STRING": "Tooltiptext Another line etc etc. Text on second line"
}
I tried \n <br/> <br>
Nothing works. If I make the text static (just type it in the html) it works fine.
` ? – Nicolas Nov 27 '19 at 14:53