Modules running differently in `.yml` vs `.toml`

yeah, i know the dance is unfortunate

so, give up on modules? seems like i won’t need them then…


I did do a little investigation, as something didn’t seem quite right. (and, yes, i know the ../.. dance is unfortunate, but, i’m doing it for the sake of experimentation…

this works as expected. (import this theme => use the theme)

[module]
  [[module.imports]]
    path = "../../themes/theme-v2"

theme = "theme-v2"

This works, too… which i guess makes sense, why would you import something if you are not going to use it…

[module]
  [[module.imports]]
    path = "../../themes/theme-v2"

#theme = "theme-v2"

This, however, does not.

module:
  imports:
  - path: ../../themes/henryskup-v2

theme :
- henryskup-v2

This works though…

module:
  imports:
  - path: ../../themes/henryskup-v2

#theme :
#- henryskup-v2