* Add Prettier set-up (no formatting in this commit). * Manual fixes for Prettier issues. * Run Prettier fix on non-markdown files. * Incorporate Prettier PR feedback - update commands, re-apply new yaml styles, add editor config. * Remove deprecated config item. * Add dependency on prettier-plugin-go-template. * reconcile changed file with prettier formatting. * Add git blame ignore revs file to include Prettier formatting commit. * Fix format issue with merge conflict.
18 lines
535 B
HTML
18 lines
535 B
HTML
{{ range sort $.Site.Data.glossary.entries "term" }}
|
|
<div>
|
|
<ul>
|
|
<li><a href="#{{ lower .term }}" class="">{{ .term }}</a></li>
|
|
</ul>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ range sort $.Site.Data.glossary.entries "term" }}
|
|
<div class="flex-1 mt-8">
|
|
<h2 class="mt-2 mb-0">{{ .term }}</h2>
|
|
<p>{{ .description }}</p>
|
|
<ul class="mb-4">
|
|
<li>Read More: <a data-track="{{ .term | urlize }}-read-more" href="{{ .link }}" class="">{{ .term }}</a></li>
|
|
</ul>
|
|
</div>
|
|
{{ end }}
|