Markdown.

EscapeAt(bool) Method

Summary

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 \@.
Assembly
Wyam.Markdown.dll
Namespace
Wyam.Markdown
Containing Type
Markdown

Syntax

public Markdown EscapeAt(bool escapeAt = true)

Parameters

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

Return Value

Type Description
Markdown The current module instance.
GitHub