We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43b39c9 commit e63bde8Copy full SHA for e63bde8
mkdocs_git_authors_plugin/plugin.py
@@ -123,6 +123,11 @@ def on_files(
123
f"[git-authors-plugin] Unable to find path for file {file.src_path}. "
124
"Generated, in-memory files won't have a git history."
125
)
126
+ elif hasattr(file, "generated_by") and file.generated_by:
127
+ logger.debug(
128
+ f"[git-authors-plugin] The file {file.src_path} was generated by {file.generated_by}. "
129
+ "Generated, dynamic files won't have a git history."
130
+ )
131
elif path := file.abs_src_path:
132
if path.endswith(".md"):
133
_ = self.repo().page(path)
0 commit comments