Hi, I am importing some products into Kentico and trying to insert a newline character. I can do that from the editor which translates fine into the frontend but when I set the property from my service the description is being treated as a single line.
Code example:
SKUTreeNode productPage = MyProductPage; productPage.DocumentSKUDescription = "Some Text\r\n\r\nSome more text;
Does anyone have any ideas please?
Thanks, James
I realised you can use html markup in the product description so this is working:
SKUTreeNode productPage = MyProductPage; productPage.DocumentSKUDescription = "Some Text<br><br>Some more text;
Please, sign in to be able to submit a new answer.