remove P tags in rss feed

This commit is contained in:
Greg Gauthier 2022-01-05 18:46:35 +00:00
parent f79e165e88
commit e0549b990b
2 changed files with 3 additions and 2 deletions

View File

@ -10,5 +10,6 @@ draft: false
{{< audio "https://gmgauthier.us-east-1.linodeobjects.com/podcast/audio/podcast_2020-06-14_boethius-addendum-the-music-of-the-consolation.mp3" >}}
This week is a musical hiatus from reading and analysis, because I have been working on my exams. Next week, normal programming will resume. But please enjoy this brief exploration of the medieval music of The Consolation. ;
NOTE: I did not do these interviews. They were done by Cambridge University, in an effort to promote the album created by the project discussed in the interviews. If you'd like to know more about the project, please visit their website: <a href="https://boethius.mus.cam.ac.uk/">https://boethius.mus.cam.ac.uk/</a>. If you'd like to purchase the album they created, you can find it on Amazon (<a href="https://www.amazon.co.uk/Boethius-Songs-Consolation-Sequentia/dp/B07D9CZPR2">link provided here</a>).

View File

@ -62,7 +62,7 @@
{{ end }}
<description>
{{`<![CDATA[ ` | safeHTML }}
{{ if isset .Params "image" }}<p><img src="{{ .Site.Params.podcastCdnURL }}{{ with .Params.image }}{{.}}{{ end }}" width="600" height="338" /></p>{{end}}
{{ if isset .Params "image" }}<img src="{{ .Site.Params.podcastCdnURL }}{{ with .Params.image }}{{.}}{{ end }}" width="600" height="338" />{{end}}
{{ .Summary | safeHTML }}
]]>
</description>
@ -70,7 +70,7 @@
{{`<![CDATA[ ` | safeHTML }}
{{ if isset .Params "image" }}
{{ $cdnUrl := .Site.Params.podcastCdnUrl }}
<p><img src="{{ $cdnUrl }}{{ with .Params.image }}{{.}}{{ end }}"/></p>
<img src="{{ $cdnUrl }}{{ with .Params.image }}{{.}}{{ end }}"/>
{{end}}
{{ .Content | safeHTML }}
]]>