Is it possible to use custom Front Matter variable inside the content of the file ?
I.e. sample post.html (post.md) file :
---
title: "New post"
date: 2021-04-29T16:00:58+02:00
draft: false
my_var: "abcdef"
---
This is value of my variable : {{ my_var }}
I tried my_var .Content.my_var, Page etc. but it doesn’t work . Is it even possible?