In a directive, setting an option_spec to directiveOptions.flag will result in the result being null if the flag is set. This is strange, as the flag is truthy.
Passing this onto mdast currently requires, for example,
const mdastOptions = {
open: t.meta.open === null || undefined,
};
Ideally the value coming out of this library is truthy for a "flag". It would also be great to have the flag be able to be set with a "true" in the markup.
```{dropdown}
:open: true
```
Currently this gets parsed into a directive error, see #42.
In a directive, setting an
option_spectodirectiveOptions.flagwill result in the result beingnullif the flag is set. This is strange, as the flag is truthy.Passing this onto mdast currently requires, for example,
Ideally the value coming out of this library is truthy for a "flag". It would also be great to have the flag be able to be set with a "true" in the markup.
Currently this gets parsed into a directive error, see #42.