Can you define your own section in config.toml
? E.g.
[MyParams]
Param1 = ...
And later access it as .MyParams.Param1
Can you define your own section in config.toml
? E.g.
[MyParams]
Param1 = ...
And later access it as .MyParams.Param1
Use .Site.Params
:
Is there way to logically group them? E.g. .Site.Params.MyParam.Param1.SomeOtherParam
where MyParam
and Param1
is a logical grouping of the parameters. Also .Site.Params.MyList[0].SomeOtherParam
and .Site.Params.MyMap["key"].SomeOtherParam
.
Whatever you put under Params
in your config file is up to you.
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.