EscapeAt(bool) Method
Specifies whether the @ symbol should be escaped (the default is true). This is important if the Markdown documents are going to be passed to the Razor module, otherwise the Razor processor will interpret the unescaped @ symbols as code directives. If you want to include a raw @ symbol when EscapeAt() is true, use \@.
Namespace
Statiq.Markdown
Containing Type
RenderMarkdown

Syntax

public RenderMarkdown EscapeAt(bool escapeAt = true)

Parameters

Name Type Description
escapeAt bool If set to true, @ symbols are HTML escaped.

Return Value

Type Description
RenderMarkdown The current module instance.