Open
Description
Hello,
I started using mkdocs-rss-plugin but noticed that at the moment it's not compatible with mkdocs-monorepo-plugin. When I run mkdocs build
I get the following output letting me know that the plugin couldn't find the dates for files in the submodules (in this case, the ones inside submodules/chart/
):
$ mkdocs build
INFO - Cleaning site directory
INFO - Building documentation to directory: /home/paulo/docs/site
WARNING - Dates could not be retrieved for page: /home/paulo/docs/submodules/chart/docs/index.md.
WARNING - Dates could not be retrieved for page: /home/paulo/docs/submodules/chart/docs/requirements.md.
WARNING - Dates could not be retrieved for page: /home/paulo/docs/submodules/chart/docs/configuration/monitoring.md.
WARNING - Dates could not be retrieved for page: /home/paulo/docs/submodules/chart/docs/configuration/integrations/bitbucket-cloud.md.
WARNING - Dates could not be retrieved for page: /home/paulo/docs/submodules/chart/docs/configuration/integrations/bitbucket-server.md.
[...]
Since this plugin is based on the plugins by Tim Vink (which I'm also using), I checked how those plugins work and they determine the local Git repository for each file before using Git to obtain the metadata on the file, as seen here:
Would you be willing to implement the same mechanism on mkdocs-rss-plugin to make it compatible with submodules?