-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing-page.mjs
63 lines (59 loc) · 1.08 KB
/
landing-page.mjs
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
const heroDirective = {
name: `hero`,
doc: `A directive for a hero section`,
body: {
type: "myst",
},
run(data) {
const div = {
type: "div",
style: {
fontWeight: "bold",
fontSize: "3em",
maxWidth: "50%",
margin: ".5em auto",
textAlign: "center",
lineHeight: "normal",
overflowWrap: "normal",
},
children: data.body,
};
return [div];
},
};
const largeRole = {
name: `large`,
doc: `A role for large text`,
body: {
type: "myst",
},
run(data) {
const div = {
type: "span",
style: { fontSize: "1.5em" },
children: data.body,
};
return [div];
},
};
const orangeRole = {
name: `orange`,
doc: `A role for Jupyter orange text`,
body: {
type: "myst",
},
run(data) {
const div = {
type: "span",
style: { color: "#e07330" },
children: data.body,
};
return [div];
},
};
const plugin = {
name: "Landing page extensions",
roles: [largeRole, orangeRole],
directives: [heroDirective],
};
export default plugin;