diff --git a/.github/workflows/check_docs.yml b/.github/workflows/check_docs.yml index 44bd323..9e1b01a 100644 --- a/.github/workflows/check_docs.yml +++ b/.github/workflows/check_docs.yml @@ -29,10 +29,12 @@ jobs: julia --project=docs -e ' using Documenter, HerbCore; makedocs( + source=".github/workflow/src", sitename="HerbCore.jl", modules=[HerbCore], format=Documenter.HTML(), doctest=true, - warnonly=[:doctest, :missing_docs] + warnonly=[:doctest, :missing_docs], + pages=["index.md"] ); ' diff --git a/.github/workflows/src/index.md b/.github/workflows/src/index.md new file mode 100644 index 0000000..d1b647f --- /dev/null +++ b/.github/workflows/src/index.md @@ -0,0 +1,15 @@ +# [HerbCore.jl Documentation](@id HerbCore_docs) + +```@meta +CurrentModule=HerbCore +``` + +```@autodocs +Modules = [HerbCore] +Order = [:type, :const, :macro, :function] +``` + +## Index + +```@index +```