mirror of
https://github.com/qwjyh/QuantumLegos.jl.git
synced 2024-11-22 15:10:12 +09:00
23 lines
486 B
Julia
23 lines
486 B
Julia
#! format: off
|
|
using Legos
|
|
using Documenter
|
|
|
|
DocMeta.setdocmeta!(Legos, :DocTestSetup, :(using Legos); recursive=true)
|
|
|
|
makedocs(;
|
|
modules=[Legos],
|
|
authors="",
|
|
# repo="",
|
|
sitename="Legos.jl",
|
|
format=Documenter.HTML(;
|
|
prettyurls=get(ENV, "CI", "false") == "true",
|
|
edit_link="main",
|
|
assets=String[],
|
|
),
|
|
pages=[
|
|
"Home" => "index.md",
|
|
"PauliOps" => "pauliops.md",
|
|
"checkmatrix.md",
|
|
"distance.md",
|
|
],
|
|
)
|