From 8b80dfe9d12b54c67fecc1b19a9a4b71a232980f Mon Sep 17 00:00:00 2001 From: TeAmp0is0N Date: Tue, 2 Jun 2020 02:08:30 +0530 Subject: [PATCH] making the documentation of like which will fix #18 --- doc/Project.toml | 4 ++++ doc/make.jl | 22 ++++++++++++++++++++++ doc/src/index.md | 0 3 files changed, 26 insertions(+) create mode 100644 doc/Project.toml create mode 100644 doc/make.jl create mode 100644 doc/src/index.md diff --git a/doc/Project.toml b/doc/Project.toml new file mode 100644 index 0000000..03340b1 --- /dev/null +++ b/doc/Project.toml @@ -0,0 +1,4 @@ +[deps] +DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2" +Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" +Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" \ No newline at end of file diff --git a/doc/make.jl b/doc/make.jl new file mode 100644 index 0000000..e6af2b4 --- /dev/null +++ b/doc/make.jl @@ -0,0 +1,22 @@ +using Documenter, IntroToJulia + +CI_FLG = get(ENV, "CI", nothing) == "true" + +makedocs( + modules = [IntroToJulia], + format = Documenter.HTML( + prettyurls = CI_FLG, + canonical = "#", + ), + sitename = "Intro To Julia Documentation", + pages = [ + + ], +) + +CI_FLG && include("make_examples.jl") + +deploydocs( + repo = "github.com/UCIDataScienceInitiative/IntroToJulia.git", + push_preview = true, +) \ No newline at end of file diff --git a/doc/src/index.md b/doc/src/index.md new file mode 100644 index 0000000..e69de29