From f400a43640e7106d181d55365a9617c3d12e5891 Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Fri, 29 Dec 2023 22:59:20 -0400 Subject: content: misc content syntax cleanup, mostly attribute merging --- src/content/dependencies/generateFlashIndexPage.js | 30 +++++++++++++--------- 1 file changed, 18 insertions(+), 12 deletions(-) (limited to 'src/content/dependencies/generateFlashIndexPage.js') diff --git a/src/content/dependencies/generateFlashIndexPage.js b/src/content/dependencies/generateFlashIndexPage.js index 5fc62ab3..621d62aa 100644 --- a/src/content/dependencies/generateFlashIndexPage.js +++ b/src/content/dependencies/generateFlashIndexPage.js @@ -96,12 +96,10 @@ export default { mainClasses: ['flash-index'], mainContent: [ !empty(data.jumpLinkLabels) && [ - html.tag('p', - {class: 'quick-info'}, + html.tag('p', {class: 'quick-info'}, language.$('misc.jumpTo')), - html.tag('ul', - {class: 'quick-info'}, + html.tag('ul', {class: 'quick-info'}, stitchArrays({ colorVariables: relations.jumpLinkColorVariables, anchor: data.jumpLinkAnchors, @@ -109,10 +107,15 @@ export default { label: data.jumpLinkLabels, }).map(({colorVariables, anchor, color, label}) => html.tag('li', - html.tag('a', { - href: '#' + anchor, - style: colorVariables.slot('color', color).content, - }, label)))), + html.tag('a', + {href: '#' + anchor}, + + {style: + colorVariables + .slot('color', color) + .content}, + + label)))), ], stitchArrays({ @@ -139,10 +142,13 @@ export default { coverGridPaths, }, index) => [ html.tag('h2', - { - id: anchor, - style: colorVariables.slot('color', color).content, - }, + {id: anchor}, + + {style: + colorVariables + .slot('color', color) + .content}, + actLink), coverGrid.slots({ -- cgit 1.3.0-6-gf8a5