mirror of https://github.com/jpanther/congo.git
🐛 `headline` not displaying Markdown or Emoji
parent
97313e9f04
commit
7c6453fd30
|
@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Search not working when `baseURL` does not end with a forward slash ([#224](https://github.com/jpanther/congo/pull/224))
|
- Search not working when `baseURL` does not end with a forward slash ([#224](https://github.com/jpanther/congo/pull/224))
|
||||||
|
- Author `headline` parameter not correctly displaying Markdown or Emoji content
|
||||||
|
|
||||||
## [2.2.2] - 2022-06-16
|
## [2.2.2] - 2022-06-16
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
</h1>
|
</h1>
|
||||||
{{ with .Site.Author.headline }}
|
{{ with .Site.Author.headline }}
|
||||||
<h2 class="text-xl text-neutral-500 dark:text-neutral-400">
|
<h2 class="text-xl text-neutral-500 dark:text-neutral-400">
|
||||||
{{ . }}
|
{{ . | markdownify | emojify }}
|
||||||
</h2>
|
</h2>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<div class="mt-1 text-2xl">
|
<div class="mt-1 text-2xl">
|
||||||
|
|
Loading…
Reference in New Issue