-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.ts
138 lines (137 loc) · 3.6 KB
/
features.ts
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
export const features: Feature[] = [
{
label: "Bold text",
slug: "bold-text",
type: "formatting",
tag: "<strong>",
description: "Make text bold.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Italic text",
slug: "italic-text",
type: "formatting",
tag: "<em>",
description: "Make text italic.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Underlined text",
slug: "underlined-text",
type: "formatting",
tag: "<u>",
description: "Make text underlined.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Strikethrough text",
slug: "strikethrough-text",
type: "formatting",
tag: "<s>",
description: "Make text strikethrough.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Hyperlink",
slug: "hyperlink",
type: "formatting",
tag: "<a>",
description: "Add a hyperlink.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Image",
slug: "image",
type: "formatting",
tag: "<img>",
description: "Add an image.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Bulleted List",
slug: "bulleted-list",
type: "formatting",
tag: "<ul><li>",
description: "Create a bulleted list.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Numbered List",
slug: "numbered-list",
type: "formatting",
tag: "<ol><li>",
description: "Create a numbered list.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Blockquote",
slug: "blockquote",
type: "formatting",
tag: "<blockquote>",
description: "Create a blockquote.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Code",
slug: "code",
type: "formatting",
tag: "<code>",
description: "Add code.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Horizontal Rule",
slug: "horizontal-rule",
type: "formatting",
tag: "<hr>",
description: "Create a horizontal rule.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Headings",
slug: "heading",
type: "formatting",
tag: "<h1>, <h2>, <h3>, <h4>, <h5>, <h6>",
description: "Create a heading.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Paragraph",
slug: "paragraph",
type: "formatting",
tag: "<p>",
description: "Create a paragraph.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Line Break",
slug: "line-break",
type: "formatting",
tag: "<br>",
description: "Create a line break.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Hashtags",
slug: "hashtags",
type: "metadata",
tag: "#hashtag",
description: "Add hashtags to your content.",
parents: ["<description>", "<itunes:summary>", "<content:encoded>"],
},
{
label: "Podcast Ratings",
slug: "podcast-ratings",
type: "interactivity",
description: "Audience ratings for the podcast (usually 1–5 stars)",
parents: ["podcast"],
},
{
label: "Podcast Reviews",
slug: "podcast-reviews",
type: "interactivity",
description: "Audience reviews for the podcast",
parents: ["podcast"],
},
];
export default features;