Call to site.yaml from an .md file

I have a .md file that has a repeated ‘word’ spread throughout the page. Is it possible to call it from site.yaml as this word may change from time to time.

Hi @duceduc, if you enable Twig processing on each page then something like this should be possible:

{{ config.site.yourvariablename }}

https://learn.getgrav.org/content/headers#process

Wonderful. This works. Would you know how I can add hyper email address within .md as well?
[{{ config.site.email }}](mailto: my@emailaddress.com ) <-- this works
[{{ config.site.email }}](mailto:{{ config.site.email }}) <-- this doesn’t work

What if you type the link with HTML instead of MD?

That’s a great suggestion @chris_jung :+1: