-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
131 lines (128 loc) · 3.99 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Draft.js filters</title>
<meta
name="description"
content="Filter Draft.js content to preserve only the formatting you allow. Built for Draftail and Wagtail"
/>
<link rel="shortcut icon" href="/draftjs-filters/favicon.ico" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/draftjs-filters/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/draftjs-filters/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/draftjs-filters/favicon-16x16.png"
/>
<link rel="manifest" href="/draftjs-filters/manifest.json" />
<link
rel="mask-icon"
href="/draftjs-filters/safari-pinned-tab.svg"
color="#007d7e"
/>
<meta name="theme-color" content="#ffffff" />
<meta name="apple-mobile-web-app-title" content="Draft filters" />
<meta name="twitter:card" content="summary_large_image" />
<meta
property="og:url"
content="https://thibaudcolas.github.io/draftjs-filters/"
/>
<meta property="og:type" content="article" />
<meta property="og:site_name" content="Draft.js filters" />
<meta property="og:title" content="Draft.js filters" />
<meta
property="og:description"
content="Filter Draft.js content to preserve only the formatting you allow. Built for Draftail and Wagtail"
/>
<meta
property="og:image"
content="https://thibaudcolas.github.io/draftjs-filters/word-toolbars-overload.jpg"
/>
<meta property="og:image:width" content="575" />
<meta property="og:image:height" content="462" />
<meta
name="twitter:image:alt"
content="Screenshot of Microsoft Word with tens of toolbars activated, cluttering the screen with too much functionality"
/>
<meta name="twitter:label1" value="Paste from Word?" />
<meta name="twitter:data1" value="Yep" />
<meta name="twitter:label2" value="Google Docs?" />
<meta name="twitter:data2" value="Sure" />
</head>
<body>
<div class="page-wrapper">
<header class="page-header">
<a href="" class="u-block"
><h1 class="page-title">Draft.js filters</h1></a
>
<p class="page-description">
Filter Draft.js content to preserve only the formatting you allow.
Built for <a
href="https://www.draftail.org/"
class="link u-wagtail"
>Draftail</a
> and <a
href="https://github.com/wagtail/wagtail"
class="link u-wagtail"
>Wagtail</a
>
</p>
<nav>
<ul class="page-nav list-inline">
<li>
<a
href="https://github.com/thibaudcolas/draftjs-filters"
class="link"
>View it on GitHub</a
>
</li>
</ul>
</nav>
</header>
<section class="page-section"><div id="root"></div></section>
<footer class="page-section">
<hr />
<p>
<a href="https://github.com/thibaudcolas">Thibaud Colas</a> and
<a
href="https://github.com/thibaudcolas/draftjs-filters/graphs/contributors"
class="link"
>contributors</a
>.
<a
href="https://github.com/thibaudcolas/draftjs-filters/blob/main/LICENSE"
class="link"
>MIT</a
>
licensed. Website content available as
<a
href="https://creativecommons.org/publicdomain/zero/1.0/"
class="link"
>CC0</a
>.
</p>
</footer>
</div>
<script>
if (global === undefined) {
var global = window
}
</script>
<script type="module" src="src/index.tsx"></script>
</body>
</html>