namespace MarkdownSharp
{
///
/// Options for configuring MarkdownSharp.
///
internal class MarkdownOptions
{
///
/// when true, (most) bare plain URLs are auto-hyperlinked
/// WARNING: this is a significant deviation from the markdown spec
///
public bool AutoHyperlink { get; set; }
///
/// when true, RETURN becomes a literal newline
/// WARNING: this is a significant deviation from the markdown spec
///
public bool AutoNewlines { get; set; }
///
/// use ">" for HTML output, or " />" for XHTML output
///
public string EmptyElementSuffix { get; set; }
///
/// when false, email addresses will never be auto-linked
/// WARNING: this is a significant deviation from the markdown spec
///
public bool LinkEmails { get; set; }
///
/// when true, bold and italic require non-word characters on either side
/// WARNING: this is a significant deviation from the markdown spec
///
public bool StrictBoldItalic { get; set; }
///
/// when true, asterisks may be used for intraword emphasis
/// this does nothing if StrictBoldItalic is false
///
public bool AsteriskIntraWordEmphasis { get; set; }
}
}