Hi, i’m new to this library and i don’t know to make my created html document had new line character. this is my code : ` string outFile = @“c:\result_Soap_Request.html”;
// Initialize an empty HTML document
using (var htmldocument = new HTMLDocument())
{
// Create a text element to add to the HTML document
var machineState = htmldocument.CreateTextNode("Machine state : "+ d.ContatoreTot2);
var currentSpeedActualFrequence = htmldocument.CreateTextNode("Machine actual frequency : " + d.FrequenzaAttualeMacch + " ");
var currentSpeedActualVelocity = htmldocument.CreateTextNode("Machine actual velocity : " + d.VelocitaFilmAttuale + " ");
var cycleCounter = htmldocument.CreateTextNode("Cycle counter : " + d.ImpNumCicli + " ");
// Add text element to HTML body
htmldocument.Body.AppendChild(machineState);
htmldocument.Body.AppendChild(currentSpeedActualFrequence);
htmldocument.Body.AppendChild(currentSpeedActualVelocity);
htmldocument.Body.AppendChild(cycleCounter);
// Save the HTML file to a disk
htmldocument.Save(outFile);
}`
I had tried all solutions , adding ‘\n’, adding the
tag in the string, using 
 for new line but none of them has worked. Can somebody help me?
Thanks in advance