zymon
7b4a415ed2
A initialization of the webpage containing package documentation is build using `Documenter.jl`.
15 lines
332 B
Julia
15 lines
332 B
Julia
using Documenter
|
|
using STFT
|
|
|
|
makedocs(
|
|
sitename = "STFT",
|
|
format = Documenter.HTML(),
|
|
modules = [STFT]
|
|
)
|
|
|
|
# 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>"
|
|
)=#
|