mirror of
https://github.com/Smaug123/ClassicalCiphers.jl
synced 2025-10-05 09:28:44 +00:00
21 lines
473 B
Julia
21 lines
473 B
Julia
include(joinpath(dirname(@__DIR__), "src", "ClassicalCiphers.jl"))
|
|
using Documenter, .ClassicalCiphers
|
|
|
|
Documenter.makedocs(
|
|
clean = true,
|
|
doctest = true,
|
|
modules = Module[ClassicalCiphers],
|
|
repo = "",
|
|
highlightsig = true,
|
|
sitename = "ClassicalCiphers Documentation",
|
|
expandfirst = [],
|
|
pages = [
|
|
"Index" => "index.md",
|
|
"Usage" => "usage.md"
|
|
]
|
|
)
|
|
|
|
deploydocs(;
|
|
repo = "github.com/Smaug123/ClassicalCiphers.jl.git",
|
|
)
|