Documenter - makedocs - LoadError - no pages found under src/

Apologies for being slow in picking up on this matter.

I am, however, trying to run the function makedocs defined in Documenter.jl.

I get the LoadError: Aborting HTML build: no pages under src/.

Q1: What src/ folders is intended here?

Q2: I am trying to generate a MWE by generating documentation for the package generated by Pkg.generate(). What information should I provide to make the error reproducible?

Thx!

Your docs folder should have the structure

docs/
    src/
        index.md
        <other files>
    make.jl

e.g. I have the structure DelaunayTriangulation.jl/docs at main · JuliaGeometry/DelaunayTriangulation.jl · GitHub. If you are trying to build the docs locally and there are no pages (.md files) in src/, you either (a) really do have no .md files in src, or (b) you might not be in the docs directory when running make.jl.

Understood. Thank you so much.