2022-04-20 17:56:06 -07:00
|
|
|
{{- $codeIndex := (.Page.Scratch.Get "codeIndex") -}}
|
|
|
|
{{- $id := (printf `code-%d` (sub $codeIndex 1)) -}}
|
|
|
|
{{- with .Get "id" -}}
|
|
|
|
{{- $id = . -}}
|
|
|
|
{{- end -}}
|
|
|
|
<!--
|
|
|
|
The full caption is too long for an aria-label;
|
|
|
|
just use the beginning for the label and the full thing for the aria description.
|
|
|
|
-->
|
2022-05-30 15:49:31 -07:00
|
|
|
<figure aria-labelledby="{{ $id }}" itemprop="hasPart" itemscope="" itemtype="https://schema.org/SoftwareSourceCode">
|
2022-04-26 17:15:42 -07:00
|
|
|
{{ .Inner | markdownify -}}
|
2022-04-19 18:06:57 -07:00
|
|
|
</figure>
|