While developing mkdocs-gallery I found out that the SubConfig class does not retrieve the failures and warnings from the nested options.
This is because run_validation executes Config.validate but does not look at its results (failures, warnings):
|
def run_validation(self, value): |
While developing mkdocs-gallery I found out that the
SubConfigclass does not retrieve the failures and warnings from the nested options.This is because
run_validationexecutesConfig.validatebut does not look at its results (failures, warnings):mkdocs/mkdocs/config/config_options.py
Line 61 in 97eafb9