🐛 Fix emoji strings in tables of contents

pull/100/head
James Panther 2022-02-03 15:53:07 +11:00
parent a1175cdcdf
commit de73ae8087
No known key found for this signature in database
GPG Key ID: D36F789E45745D17
2 changed files with 7 additions and 2 deletions

View File

@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased] ## [Unreleased]
### Fixed
- Hugo module error when downloading version 2
- Emoji strings not displaying in table of contents
## [2.0.0] - 2022-02-03 ## [2.0.0] - 2022-02-03
### Added ### Added
@ -15,7 +20,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Site search powered by Fuse.js - Site search powered by Fuse.js
- Automatic Markdown image resizing and srcset generation - Automatic Markdown image resizing and srcset generation
- Performance and Accessibility improvements to achieve perfect Lighthouse scores - Performance and Accessibility improvements to achieve perfect Lighthouse scores
- Tables of Contents on article pages - Tables of contents on article pages
- Code copy buttons in article content - Code copy buttons in article content
- Taxonomy and term listings now support Markdown content - Taxonomy and term listings now support Markdown content
- Taxonomies on article and list pages - Taxonomies on article and list pages

View File

@ -7,6 +7,6 @@
<div <div
class="py-2 border-dotted ltr:border-l rtl:border-r rtl:pr-5 ltr:pl-5 ltr:-ml-5 rtl:-mr-5 border-neutral-300 dark:border-neutral-600" class="py-2 border-dotted ltr:border-l rtl:border-r rtl:pr-5 ltr:pl-5 ltr:-ml-5 rtl:-mr-5 border-neutral-300 dark:border-neutral-600"
> >
{{ .TableOfContents }} {{ .TableOfContents | emojify }}
</div> </div>
</details> </details>