HTML TidyCom は、クリーンアップ中に閉じられていないタグを削除しますか?
例えば:
ソースファイルと比較すると、終了が欠落しているタグが消去されます。これを保持する方法を教えてください。以下は、私のプログラムに使用しているコード スニペットです。
Dim tid As 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
迅速な返信をお待ちしております。よろしくお願いします。