I have some dynamic values I would like to display inline with my content.
This is the content of an article where I would like to display an inline {{ value }}.
Then I render my content just like you normally would.
<div>
{{ content }}
</div>
But Statamic renders the content as is.
<div>
This is the content of an article where I would like to display an inline {{ value }}.
</div>
How do I get this value interpolated when rendering the content?