Html Block Markdown Extension Constructor
Constructor
Definition
Namespace: Sandcastle.Core.Markdown.Extensions
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.3.29.0
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.3.29.0
C#
public HtmlBlockMarkdownExtension(
IEnumerable<string> blockTags,
IEnumerable<string> doNotParseTags
)VB
Public Sub New (
blockTags As IEnumerable(Of String),
doNotParseTags As IEnumerable(Of String)
)C++
public:
HtmlBlockMarkdownExtension(
IEnumerable<String^>^ blockTags,
IEnumerable<String^>^ doNotParseTags
)F#
new :
blockTags : IEnumerable<string> *
doNotParseTags : IEnumerable<string> -> HtmlBlockMarkdownExtensionParameters
- blockTags IEnumerableString
- An enumerable list of tags that should be treated as blocks
- doNotParseTags IEnumerableString
- An enumerable list of tags that should not be parsed for Markdown content (code, scripts, pre, style, textarea, etc.).