DocAnything.jl

A simple documentation explorer for Julia
Author emmaccode
Popularity
5 Stars
Updated Last
1 Year Ago
Started In
March 2023
doc anything!

Build a quick, searchable documentation browser for any module in Julia!

step 1: add this package.
julia> using Pkg; Pkg.add(url = "https://github.com/emmettgb/DocAnything.jl")

julia> ]

pkg> add https://github.com/emmettgb/DocAnything.jl
step 2: import and start
julia> using DocAnything

julia> DocAnything.start()
step 3: load documentation

You can load a given module's documentation using the load_doc!(::Module) method. This will be exported by DocAnything whenever you use the package.

julia> using Toolips

julia> load_doc!(Toolips)
Toolips
step 4: visit your documentation!