Let’s say for example that I have ‘How To’ and ‘Tags’. I would like to add a short description at the top of the page preferably in markdown. Do I just hard code it with html inside terms.html or is there a way I can use markdown and use {{.Content}} ?
Add it to terms.html like this ?
<h2>Introduction</h2>
<p>I have something to say about 'How To' and 'Tags' right here.</p>
Or is there a markdown file I could use like _terms.md ?
## Introduction
I Have something to say about 'How To' and 'Tags' right here.
Render the markdown inside the html could also be a possibility. With a single.html and list.html I can easily render content with index.md and _index.md, is there something for taxonomy markdown that I can use? I only have a few taxonomies but I could see how it would require some automation for someone who has lot of them. Rendering different pages for different terms.