Using params in {{ .Content }}

Is it possible to use frontmatter params in {{ .Content }}? That is, something like this:

--- 
planet: “Earth”
--- 

I live in {{ .Params.planet }}.

https://gohugo.io/content-management/shortcodes/#param

That was fast, thank you!