How do I make it so the home page fully renders my markdown text including quote blocks?

Here’s my blog: https://www.tetizeraz.online/

There’s one post, called “Aceitação”, which is a post that uses quote blocks in the beginning. If you open the post, you see this:

However, if you are in the home page, as I imagine you do, the quote is instead turned into a string without the quote block styling used by markdown. Is it possible to fix that?

I use the hyde theme for Hugo. Do I have to change something in the css or html? I can upload a public repo if that information is necessary.

See:
https://discourse.gohugo.io/t/list-of-posts-does-not-render-html-in-summary/33600/3

Manually split the summary from the remainder of the content with <!--more-->.

---
title: "Foo"
date: 2021-08-07T15:46:11-07:00
draft: false
---
Dolor consectetur proident labore cillum sit enim irure. 

> Ut nulla eiusmod tempor eu aliqua cillum excepteur mollit
consectetur eiusmod ad labore.

> Ullamco minim consectetur velit esse enim veniam fugiat.
Id cillum reprehenderit laboris ipsum mollit sint eu ea. 

Aliqua tempor consequat nisi fugiat reprehenderit. 

<!--more-->

Laboris est anim anim irure ut in labore exercitation est do
ex dolor. Esse quis ullamco aute anim esse dolor proident non.
1 Like

Thank you! It worked.

Capturar

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.