TIL: Collapsing whitespace in a Liquid template

By inserting an empty string, Liquid's whitespace control can be used to remove newlines in templates while keeping them readable:

<p class="title">
  {{- article.title -}}
</p>

{{- "" -}}

<p class="summary">
  {{- article.summary | strip -}}
</p>

(via)