namespace Sander.txt2html { /// /// Conversion settings /// public sealed class ConversionSettings { /// /// Fix *bold* /// public bool FixBold { get; set; } /// /// Fix _italic_ /// public bool FixItalic { get; set; } /// /// Detect and mark URLs /// public bool DetectUrls { get; set; } /// /// Minimum line length when fixing paragraphs. Use null to disable /// public uint? MinimumLineLength { get; set; } /// /// HTML entity replacement. Change txt2html.ent to specify what is changed. Note that critical entities (> < /// " &) are always replaced /// public bool CreateEntities { get; set; } /// /// Include custom CSS. Leave null to disable. /// public string Css { get; set; } /// /// Title to be used in HTML /// public string Title { get; set; } } }