Skip to content

Commit

Permalink
feat: use all .html files when generating search indexes (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenpi authored Aug 28, 2023
1 parent afa5a76 commit df29008
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/MultiDocumenter.jl
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,7 @@ function walk_outputs(f, root, docs::Vector{MultiDocRef}, dirs::Vector{String})
for dir in dirs
dirpath = joinpath(p, dir)
isdir(dirpath) || continue
DocumenterTools.walkdocs(
dirpath,
fileinfo -> fileinfo.filename == "index.html",
) do fileinfo
DocumenterTools.walkdocs(dirpath, DocumenterTools.isdochtml) do fileinfo
f(relpath(dirname(fileinfo.fullpath), root), fileinfo.fullpath)
end
break
Expand Down

0 comments on commit df29008

Please sign in to comment.