Slices of complex types are not taken into account.
E.g.
type Config struct {
Foo []Test `envPrefix:"FOO"`
}
type Test struct {
Bar string `env:"BAR"`
}
currently results in the following generated file:
# Environment Variables
## Config
- `FOO_BAR` -
although the environment variables would be:
FOO_0_BAR, FOO_1_BAR, etc.