mirror of
https://github.com/qwjyh/QuantumLegos.jl.git
synced 2024-11-22 23:11:05 +09:00
24 lines
486 B
Julia
24 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",
|
||
|
],
|
||
|
)
|