register_common_packages
Notedocblock
register_common_packages(; load_inventories::Bool=false, registry=EXTERNAL_DOCS[])Register common Julia packages with their documentation URLs. Includes DataFrames, Plots, Makie, Flux, JuMP, and more.
By default this only records base URLs and performs no network access; references will resolve only once an inventory is available. Pass load_inventories=true to additionally attempt to fetch each package’s objects.inv (each fetch is wrapped in its own try/catch and failures are skipped, so this degrades gracefully when offline).
Example
register_common_packages() # offline, URLs only
register_common_packages(load_inventories=true) # also fetch inventories