I have Azure AD B2C authentication in my application and I have enabled internationalization support. I have customized the sign in page the language file provided by Microsoft is in json format. I need to add break line or new line between some of my strings it doesn't works.
I added \n and also \\n and <br /> 
 
 its not working.
  {
  "ElementType": "UxElement",
  "ElementId": null,
  "StringId": "forgotpassword_link",
  "Override": true,
  "Value": "Forgot your password? (Vous avez oublié?)"
},
{
  "ElementType": "UxElement",
  "ElementId": null,
  "StringId": "heading",
  "Override": true,
  "Value": "Sign in  \n \\n (Ouverture de session)"
},
is there a way I add breakline between my string ?
 
     
    
withing the text, it reads it as text not html – MJ X Jul 06 '22 at 22:18