namespace MfGames.Markdown.Gemtext.Renderers { /// /// Describes how links are processed within a paragraph. /// public enum BlockLinkHandling { /// /// Indicates that the paragraph should be broken apart and the link /// included on its own line in the middle of the paragraph. /// InsertLine, /// /// Indicates that all the links in a paragraph should be gathered /// and then emitted at the end of the paragraph. The text of the link /// will be left in the paragraph. /// ParagraphEnd, /// /// Indicates that all the links in the document should be gathered /// and then emitted at the end of the document. The text of the link /// will be left in the paragraph. /// DocumentEnd, /// /// Indicates that the links themselves should be removed and just the /// text included in the paragraph. /// Remove, } }