oprypin / mkdocs-gen-files

MkDocs plugin to programmatically generate documentation pages during the build
https://oprypin.github.io/mkdocs-gen-files
MIT License
98 stars 8 forks source link

Generate index.md warning #24

Closed zhangnew closed 1 year ago

zhangnew commented 1 year ago

I want to use this plugin to generate a table of contents for my documentation, but I get the following warning:

WARNING - Documentation file 'index.md' contains a link to 'xx/index.html' which is not found in the documentation files.

Is it possible to change the timing of the plugin execution to eliminate this kind of warning?

oprypin commented 1 year ago

You need to link to xx.md or xx/index.md, not index.html

zhangnew commented 1 year ago

Thx !