vb.net - TIDYCom Deletes the missing tags during cleanup? -


html tidycom removes unclosed tags during cleanup?

eg:

tag missing closing wiped off when compared source file .so can 1 let me know how can retained. following code snippet using program.

 dim tid new tidyobject()      tid.options.doctype = "strict"     tid.options.outputxml = true     tid.options.addxmldecl = true     tid.options.clean = false     tid.options.dropemptyparas = true     tid.options.dropfonttags = false     tid.options.charencoding = charencoding.utf8     tid.options.quoteampersand = true     tid.options.quotemarks = false     tid.options.quotenbsp = true     tid.options.tidymark = false     tid.options.logicalemphasis = true     tid.options.breakbeforebr = false     tid.options.fixbackslash = true     tid.options.fixbadcomments = true     tid.options.wrap = true     tid.options.uppercaseattributes = false     tid.options.uppercasetags = false     tid.options.indent = true     tid.options.indentspaces = 4     tid.options.indentattributes = true     tid.options.word2000 = false  

waiting quick reply.thanks in advance

you can have reference @ link http://w3c.github.io/tidy-html5/quickref.html#drop-empty-paras have set true, might causing problem.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -