I’m likely missing something silly. The following does not produce new lines between the last 3 lines as I’d expect (I can do paragraphs if I add empty lines in between them, but don’t want paragraphs):
---
title: About Us
subtitle: >-
The X Foundation was created in 2017 by ...
layout: page
---
## People
Foo Bar (Founder),
Bruce Lee,
Tupak Amaru
The above is rendered by {{ .Content }}
, specifically:
{{ define "content" }}
<div class="outer">
<div class="inner-medium">
<article class="post post-full">
<header class="post-header">
<h1 class="post-title">{{ .Params.title }}</h1>
</header><!-- .post-header -->
{{ if .Params.image }}
<div class="post-thumbnail">
<img src="{{ .Params.image | relURL }}" alt="{{ .Params.title }}" />
</div><!-- .post-thumbnail -->
{{ end }}
{{ if .Params.subtitle }}
<div class="post-subtitle">
{{ .Params.subtitle | safeHTML }}
</div><!-- .post-subtitle -->
{{ end }}
<div class="post-content">
{{ .Content }}
</div><!-- .post-content -->
</article><!-- .post -->
</div><!-- .inner-medium -->
</div><!-- .outer-->
{{ end }}