Hey there!
I have the following snippet:
{{ image.html('My title', 'alt', 'myclass') }}
Can I print twig inside this .html() action? For example to output a special alt-tag defined in the page header of the corresponding markdown file?
I tried the following, but this doesn't work.
{{ image.html('My title', '{{ page.header.imagemeta }} ', 'myclass') }}
Is it possible to get this to work somehow?
Cheers!