Compare commits

...

2 commits

Author SHA1 Message Date
2fbd7a578a add program top text 2024-09-28 12:35:47 +02:00
42516c1499 fix svg in markdown issue 2024-09-28 12:35:37 +02:00
4 changed files with 22 additions and 8 deletions

View file

@ -37,7 +37,8 @@
font-size: 26px;
}
.timeslot .icon {
.timeslot .icon,
p .icon {
height: 1.1em;
vertical-align: text-bottom;
fill: currentColor;

View file

@ -4,5 +4,10 @@ title: Programm
tags: mainNav
eleventyNavigation:
order: 1
templateEngineOverride: njk,md
---
# Programm
Die ESE startet dieses Jahr am Montag, den 07. Oktober 2024. Los geht es mit der Begrüßungsveranstaltung. Am Sonntag wird vorab schon eine Radtour angeboten.
Einige Veranstaltungen übertragen wir auch Live in unserem ESE-Stream, gekennzeichnet mit diesem Symbol: {% icon "solid:video", title="Livestream" %}

View file

@ -4,5 +4,10 @@ title: Program
tags: mainNav
eleventyNavigation:
order: 1
templateEngineOverride: njk,md
---
# Program
The ESE starts this year on Monday, October 7th, 2024 with the opening event. There is also a bicycle tour planned on Sunday.
Some events will also be broadcast live in our ESE stream, marked with this symbol: {% icon "solid:video", title="Livestream" %}

View file

@ -26,15 +26,18 @@ module.exports = function(eleventyConfig) {
// override icon shortcode to make the SVGs accessible
eleventyConfig.addAsyncShortcode("icon", async function(input, attrs) {
let out;
if (!attrs || !("title" in attrs)) {
return eleventyConfig.nunjucksAsyncShortcodes.rawIcon(input, attrs);
out = await eleventyConfig.nunjucksAsyncShortcodes.rawIcon(input, attrs);
} else {
const { title, ...newAttrs } = attrs;
newAttrs.role = "img";
const svgStr = await eleventyConfig.nunjucksAsyncShortcodes.rawIcon(input, newAttrs);
const match = svgStr.match(/(<svg.*?>)(.*$)/s);
out = match[1] + "<title>" + title + "</title>" + match[2];
}
const { title, ...newAttrs } = attrs;
newAttrs.role = "img";
const svgStr = await eleventyConfig.nunjucksAsyncShortcodes.rawIcon(input, newAttrs);
const match = svgStr.match(/(<svg.*?>)(.*$)/s);
return match[1] + "<title>" + title + "</title>" + match[2];
// line breaks cause some issues
return out.replaceAll("\n", "");
});
// process the logo files