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
|
export default {
contentDependencies: ['generateContentHeading'],
extraDependencies: ['html', 'language'],
relations: (relation, _thing) => ({
contentHeading:
relation('generateContentHeading'),
}),
data: (thing) => ({
name:
thing.name,
}),
slots: {
attributes: {
type: 'attributes',
mutable: false,
},
string: {
type: 'string',
},
},
generate: (data, relations, slots, {html, language}) =>
relations.contentHeading.slots({
attributes: slots.attributes,
title:
language.$(slots.string, {
thing:
html.tag('i', data.name),
}),
stickyTitle:
language.$(slots.string, 'sticky'),
}),
}
|