make.jl
1 using GrothAlgebra 2 using Documenter 3 4 DocMeta.setdocmeta!(GrothAlgebra, :DocTestSetup, :(using GrothAlgebra); recursive=true) 5 6 makedocs(; 7 modules=[GrothAlgebra], 8 authors="0xpantera <0xpantera@proton.me>", 9 sitename="GrothAlgebra.jl", 10 format=Documenter.HTML(; 11 canonical="https://0xpantera.github.io/GrothAlgebra.jl", 12 edit_link="main", 13 assets=String[], 14 ), 15 pages=[ 16 "Home" => "index.md", 17 ], 18 ) 19 20 deploydocs(; 21 repo="github.com/0xpantera/GrothAlgebra.jl", 22 devbranch="main", 23 )