-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMarkType.cs
More file actions
43 lines (43 loc) · 1.21 KB
/
MarkType.cs
File metadata and controls
43 lines (43 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
namespace Contentstack.Utils.Enums
{
public enum MarkType
{
/// <summary>
/// This will specify the Mark type of text node as Bold
/// </summary>
Bold,
/// <summary>
/// This will specify the Mark type of text node as Italic
/// </summary>
Italic,
/// <summary>
/// This will specify the Mark type of text node as Underline
/// </summary>
Underline,
/// <summary>
/// This will specify the Mark type of text node as Strikethrough
/// </summary>
Strikethrough,
/// <summary>
/// This will specify the Mark type of text node as InlineCode
/// </summary>
InlineCode,
/// <summary>
/// This will specify the Mark type of text node as Subscript
/// </summary>
Subscript,
/// <summary>
/// This will specify the Mark type of text node as Superscript
/// </summary>
Superscript,
/// <summary>
/// This will specify the class selector
/// </summary>
Class,
/// <summary>
/// This will specify the id selector
/// </summary>
Id
}
}