Skip to content

Commit

Permalink
Trim docs comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AP6YC committed Jan 5, 2024
1 parent 702fcc3 commit ccb2ea8
Showing 1 changed file with 1 addition and 33 deletions.
34 changes: 1 addition & 33 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ if haskey(ENV, "DOCSARGS")
end
end


# -----------------------------------------------------------------------------
# DOWNLOAD LARGE ASSETS
# -----------------------------------------------------------------------------
Expand Down Expand Up @@ -107,38 +106,6 @@ with_logger(detailed_logger) do
end
end


# -----------------------------------------------------------------------------
# DOWNLOAD LARGE ASSETS
# -----------------------------------------------------------------------------

# # Point to the raw FileStorage location on GitHub
# top_url = raw"https://media.githubusercontent.com/media/AP6YC/FileStorage/main/AdaptiveResonance/"
# # List all of the files that we need to use in the docs
# files = [
# "header.png",
# "art.png",
# "artmap.png",
# "ddvfa.png",
# ]
# # Make a destination for the files
# download_folder = joinpath("src", "assets", "downloads")
# mkpath(download_folder)
# download_list = []
# # Download the files one at a time
# for file in files
# # Point to the correct file that we wish to download
# src_file = top_url * file * "?raw=true"
# # Point to the correct local destination file to download to
# dest_file = joinpath(download_folder, file)
# # Add the file to the list that we will append to assets
# push!(download_list, dest_file)
# # If the file isn't already here, download it
# if !isfile(dest_file)
# download(src_file, dest_file)
# end
# end

# -----------------------------------------------------------------------------
# GENERATE
# -----------------------------------------------------------------------------
Expand All @@ -160,6 +127,7 @@ makedocs(
format=Documenter.HTML(
prettyurls = get(ENV, "CI", nothing) == "true",
assets = assets,
size_threshold = Int(1e6),
),
pages=[
"Home" => "index.md",
Expand Down

0 comments on commit ccb2ea8

Please sign in to comment.