mirror of
https://github.com/MillironX/SequenceVariation.jl.git
synced 2024-11-22 13:29:56 +00:00
16 lines
371 B
Julia
16 lines
371 B
Julia
|
using Documenter
|
||
|
using SequenceVariation
|
||
|
|
||
|
makedocs(
|
||
|
sitename = "SequenceVariation",
|
||
|
format = Documenter.HTML(),
|
||
|
modules = [SequenceVariation]
|
||
|
)
|
||
|
|
||
|
# Documenter can also automatically deploy documentation to gh-pages.
|
||
|
# See "Hosting Documentation" and deploydocs() in the Documenter manual
|
||
|
# for more information.
|
||
|
#=deploydocs(
|
||
|
repo = "<repository url>"
|
||
|
)=#
|