namespace MfGames.Markdown.Gemtext.Renderers { /// /// Describes the ways of formatting a HTML block. /// public enum HtmlBlockFormatting { /// /// Indicates that HTML code blocks should just be removed. /// Remove, /// /// Indicates that HTML code blocks should be treated as blocks with /// "html" as the type. /// CodeBlock, } }