Topic Transformation CoreHtml Block And Do Not Parse Tags Property
This read-only property is used to obtain an enumerable list of HTML block tags and those that should
not be parsed.
Definition
Namespace: Sandcastle.Core.PresentationStyle.Transformation
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
A tuple containing an enumerable list of the block tags and do not parse tags
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
C#
public (IEnumerable<string> BlockTags, IEnumerable<string> DoNotParseTags) HtmlBlockAndDoNotParseTags { get; }VB
Public ReadOnly Property HtmlBlockAndDoNotParseTags As (BlockTags As IEnumerable(Of String), DoNotParseTags As IEnumerable(Of String))
GetC++
public:
property ValueTuple<IEnumerable<String^>^, IEnumerable<String^>^> HtmlBlockAndDoNotParseTags {
ValueTuple<IEnumerable<String^>^, IEnumerable<String^>^> get ();
}F#
member HtmlBlockAndDoNotParseTags : ValueTuple<IEnumerable<string>, IEnumerable<string>> with getProperty Value
ValueTupleIEnumerableString, IEnumerableStringA tuple containing an enumerable list of the block tags and do not parse tags
Remarks
These are used by the Markdown to MAML converter to determine how to convert certain
elements to MAML.