Content in textfile structure for blocks

I love that Kirby stores the content in simple text files with readable data.
But regrettably when using blocks, the make-up of the data in content text files is not readable anymore.

I am new to Kirby and I was wondering if this is something more people encounter.
Is it currently changeable with a setting or a plugin?
Is the Kirby team currently aware of this, is this issue somewhere on a wish list or am I alone in this?

Below I have the current make-up and below that a more readable proposed data make-up

Thanks!
René

Current

Alinea: [{"content":{"alineakop":"This is the title","alineatekst":"Neq
ue porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adi
pisci velit..."},"id":"00000000-46da-4eb9-948e-b59f4d4ffab4","isHidden":false
,"type":"alinea"},{"content":{"alineakop":"This is the 2nd title","alineatek
st":"My Neque po.....

More readable

Alinea: [
  
  {"content":
    {
      "alineakop":
        "This is the title",
      "alineatekst":
        "Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit...""
    },
    "id":
      "00000000-46da-4eb9-948e-b59f4d4ffab4",
    "isHidden":
      false,
    "type":
      "alinea"
  },

{"content":
    {
       "alineakop":
           "This is the 2nd title",
       "alineatekst":
           "My Neque po.....

Use

pretty: true

field option for more readable output.

1 Like

Super!
Very glad about this. So simple.
Thank you!

type: blocks
pretty: true