Blockquote missing paragraph tags

I am not sure if this is a Hugo or Goldmark issue. But a single line is not wrapped in paragraph tags. Any tips to resolve this?

render-codeblock-quote.html

{{- $author := .Attributes.cite  }}
{{- $class := .Attributes.class  }}
<figure>
  <blockquote {{- with $class }} class="{{ . }}" {{- end }}>{{ .Inner | .Page.RenderString }}</blockquote>
  {{- with $author}}<figcaption>{{ . | $.Page.RenderString }}</figcaption>{{ end -}}
</figure>
    ```quote { cite="Jane Doe" }

    Labore aperiam voluptas fugit tempore fugit est magnam aut. Dolorum omnis hic aliquid eveniet est fugit et. Impedit dolorum velit voluptatem qui voluptate atque unde voluptas.

    ```

See docs:
https://gohugo.io/methods/page/renderstring/

Specifically, the options map.

Not very (for layperson) clear from the docs that this means using dict. (Allow markdownify as a block for .Inner · Issue #5975 · gohugoio/hugo · GitHub). Perhaps you might choose to include that example under display?

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