We updated to use tool.render-engine['cli'] as the config source in the pyproject.toml file. This does cause some weirdness in requiring it to be formatted like this:
["tool.render-engine".cli]
module = "app"
site = "app"
collection = "blog"
(Notice the " around tool.render-engine.)
I don't know if we want to fix this to be a more standard tool['render-engine']['cli'] or just update the documentation to indicate the requirement for the ". In either case, we do need to update the documentation because it still shows render-engine['cli'] without the tool at all.
We updated to use
tool.render-engine['cli']as the config source in the pyproject.toml file. This does cause some weirdness in requiring it to be formatted like this:(Notice the
"aroundtool.render-engine.)I don't know if we want to fix this to be a more standard
tool['render-engine']['cli']or just update the documentation to indicate the requirement for the". In either case, we do need to update the documentation because it still showsrender-engine['cli']without thetoolat all.