slightlyoff@toot.cafe ("Alex Russell") wrote:
Realised an incredibly cool thing about @11ty as I've been adopting `markdown-it-abbr`[1]:
If your templates are nunjucks-flavoured markdown (or similar), you can do something like this:
```md
A sentence about TLAs and USB and NFC and HID and FAT.{% include "_includes/acronyms.md" %}
```And then have your `acronyms.md` include the expansions:
```md
*[TLAs]: Three Letter Acronyms
...
```