From 4ef7ba4450082ac3013a5cdc425dce78a1b8a812 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Tue, 5 Jul 2022 10:09:40 -0500 Subject: [PATCH] Run DocumenterTools.generate() --- docs/.gitignore | 2 ++ docs/Project.toml | 2 ++ docs/make.jl | 15 +++++++++++++++ docs/src/index.md | 3 +++ 4 files changed, 22 insertions(+) create mode 100644 docs/.gitignore create mode 100644 docs/Project.toml create mode 100644 docs/make.jl create mode 100644 docs/src/index.md diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000..a303fff --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,2 @@ +build/ +site/ diff --git a/docs/Project.toml b/docs/Project.toml new file mode 100644 index 0000000..dfa65cd --- /dev/null +++ b/docs/Project.toml @@ -0,0 +1,2 @@ +[deps] +Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" diff --git a/docs/make.jl b/docs/make.jl new file mode 100644 index 0000000..d20f2b3 --- /dev/null +++ b/docs/make.jl @@ -0,0 +1,15 @@ +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 = "" +)=# diff --git a/docs/src/index.md b/docs/src/index.md new file mode 100644 index 0000000..9a90589 --- /dev/null +++ b/docs/src/index.md @@ -0,0 +1,3 @@ +# SequenceVariation.jl + +Documentation for SequenceVariation.jl