mirror of
https://github.com/mkdocs/mkdocs.git
synced 2026-03-27 09:58:31 +07:00
The warning for missing files should only be issued if the config setting is empty. The warning only exists because we disabled autopopulating of the settings. Autopopulating only used to run when the setting was empty so the warning is not nessecary if the setting has been populated. Given the above, no string comparisons need to be made as we only need to check if any files exist when empty. Therefore, we don't actually need to normalize paths. As we are no longer modifying users' strings, they can again put any string in their config, such as URLs of CDNs. Fixes #1335 & #1336.