🐛 Fix lead shortcode not rendering Markdown

Fixes #73
pull/76/head
James Panther 2022-01-05 10:13:23 +11:00
parent ecf207273c
commit 4ca9f334cb
No known key found for this signature in database
GPG Key ID: D36F789E45745D17
2 changed files with 7 additions and 3 deletions

View File

@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [Unreleased]
### Fixed
- `lead` shortcode not rendering Markdown formatted text ([#73](https://github.com/jpanther/congo/issues/73))
## [1.6.1] - 2021-12-31
### Added

View File

@ -1,3 +1,3 @@
<p class="!mb-9 text-xl text-neutral-500 dark:text-neutral-400">
{{ .Inner }}
</p>
<div class="!mb-9 text-xl text-neutral-500 dark:text-neutral-400">
{{ .Inner | markdownify }}
</div>