Markdown To Maml Converter Constructor
Constructor
Definition
Namespace: Sandcastle.Core.Markdown
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2026.1.20.0
C#
public MarkdownToMamlConverter(
bool forPreview,
IEnumerable<string> blockTags,
IEnumerable<string> doNotParseTags
)VB
Public Sub New (
forPreview As Boolean,
blockTags As IEnumerable(Of String),
doNotParseTags As IEnumerable(Of String)
)C++
public:
MarkdownToMamlConverter(
bool forPreview,
IEnumerable<String^>^ blockTags,
IEnumerable<String^>^ doNotParseTags
)F#
new :
forPreview : bool *
blockTags : IEnumerable<string> *
doNotParseTags : IEnumerable<string> -> MarkdownToMamlConverterParameters
- forPreview Boolean
- True if rendering for preview, false if for a build
- 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.).