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 cfae9d4 commit bc6fac7Copy full SHA for bc6fac7
src/documentertools/walkdocs.jl
@@ -26,6 +26,9 @@ Checks if the file is a Documenter-generated HTML file.
26
"""
27
function isdochtml(fileinfo::FileInfo)
28
_, ext = splitext(fileinfo.filename)
29
+ # While currently the function only checks for the file extension, the semantics of
30
+ # this predicate are such that it might also look at the contents of the file and do
31
+ # other heuristics. I.e. we can make this function smarted as needed.
32
return ext == ".html"
33
end
34
0 commit comments