namespace OliverBooth.Markdown.Timestamp;
///
/// An enumeration of timestamp formats.
///
public enum TimestampFormat
{
///
/// Short time format. Example: 12:00
///
ShortTime = 't',
///
/// Long time format. Example: 12:00:00
///
LongTime = 'T',
///
/// Short date format. Example: 1/1/2000
///
ShortDate = 'd',
///
/// Long date format. Example: 1 January 2000
///
LongDate = 'D',
///
/// Short date/time format. Example: 1 January 2000 at 12:00
///
LongDateShortTime = 'f',
///
/// Long date/time format. Example: Saturday, 1 January 2000 at 12:00
///
LongDateTime = 'F',
///
/// Relative date/time format. Example: 1 second ago
///
Relative = 'R',
}