Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 7x | import type { Element } from 'hast';
export function detailsNode(title?: string): Element {
return {
type: 'element',
tagName: 'details',
properties: { open: true, className: 'octicon octicon-video' },
children: [
{
type: 'element',
tagName: 'summary',
properties: {},
children: [
{
type: 'element',
tagName: 'svg',
properties: {
'aria-hidden': true, height: 16, width: 16, viewBox: '0 0 16 16', version: '1.1', 'data-view-component': true,
className: 'octicon octicon-device-camera-video'
},
children: [
{
type: 'element',
tagName: 'path',
properties: {
'fill-rule': 'evenodd',
d: 'M16 3.75a.75.75 0 00-1.136-.643L11 5.425V4.75A1.75 1.75 0 009.25 3h-7.5A1.75 1.75 0 000 4.75v6.5C0 12.216.784 13 1.75 13h7.5A1.75 1.75 0 0011 11.25v-.675l3.864 2.318A.75.75 0 0016 12.25v-8.5zm-5 5.075l3.5 2.1v-5.85l-3.5 2.1v1.65zM9.5 6.75v-2a.25.25 0 00-.25-.25h-7.5a.25.25 0 00-.25.25v6.5c0 .138.112.25.25.25h7.5a.25.25 0 00.25-.25v-4.5z'
},
children: [],
}
]
},
{
type: 'element',
tagName: 'span',
properties: {
'aria-label': `Video description ${title || ''}`
},
children: [
{
type: 'text',
value: title || ''
}
]
},
{
type: 'element',
tagName: 'span',
properties: {
className: 'dropdown-caret'
},
children: []
}
]
}
]
}
} |