Calendar: Link to first URL from description
All checks were successful
/ build (pull_request) Successful in 37s
/ build (push) Successful in 12s

This commit is contained in:
jtbx 2024-01-23 19:29:41 +01:00
parent 3a13900bed
commit d9a1b256ad

View file

@ -13,7 +13,12 @@
<tr>
{{- $start := time .dtstart }}
<td style="font-variant-numeric: tabular-nums;">{{ $start.Local.Format "Mon, 2006-01-02 15:04" }}</td>
{{- $potentialUrl := index (findRE `https?://\S*` .description 1) 0 }}
{{- if eq $potentialUrl nil }}
<td>{{ .summary }}</td>
{{- else }}
<td><a href="{{ $potentialUrl }}">{{ .summary }}</a></td>
{{- end }}
<td>{{ .location }}</td>
</tr>
{{- end }}