-
DescriptionHi, I’m creating a Lua filter and I need to access data in the YAML header of the An example: ---
title: "Some title"
format:
beamer:
aspectratio: 169
filters:
- myfilter
---
Some data.
How can I access the aspectratio element? Of course, I could add some lines such as myfilter:
customaspectratio: 169 But I would prefer to avoid this solution. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I just should have looked more carefully at the "works" output… I tried to access it with |
Beta Was this translation helpful? Give feedback.
I just should have looked more carefully at the "works" output… I tried to access it with
m.format.beamer.aspectratio
when it was simplym.aspectratio
.