This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-markdown-cil/src/MfGames.Markdown.Gemtext/Renderers/InlineFormatting.cs

22 lines
609 B
C#

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