namespace MfGames.Markdown.Gemtext.Renderers { /// /// Describes the ways of formatting inline elements such as emphasis, /// strong, and other elements. /// public enum InlineFormatting { /// /// Indicates that the inline should be remove and only the text /// rendered. /// Remove, /// /// Indicates that the inline should be left in place in a normalized /// form (such as converting `_italics_` into `*italics*`). /// Normalize, } }