Hi all
I have what feels like a bit of a silly question, but alas, here I am. ![]()
I want to tidy up my front matter declarations—purely from an aesthetic point of view.
However, unsurprisingly, things break as soon as I introduce a new line or tabs within a string value.
For example, I’ve recently started using the Summary option in my front matter like so:
However, as shown at the location indicated by the arrow, the string wraps due to its continuous nature, making it appear messy.
Is there a way to prevent this? I know that in other languages, such as PowerShell, you can insert a ‘new line’ character without breaking the string. However, I’m struggling to find the equivalent for this case.
Ideally, I’d like to format it like this:
+++
date = '2025-06-01T06:01:32+01:00'
author = "Lee Brownhill"
title = 'Parallelism Problems within SQL Server'
draft = false
summary = 'lorem ipsum dolor sit amet, consectetur adipiscing elit
lorem ipsum dolor sit amet, consectetur adipiscing elit
lorem ipsum dolor sit amet, consectetur adipiscing elit.'
+++
