resolve_inventory

Notedocblock
resolve_inventory(inv::Inventory, name::AbstractString) -> Union{String, Nothing}

Resolve an object name against inv, returning a full URL (the inventory’s root_url joined with the item URI) or nothing if not found.

Lookup tries, in order:

  1. the exact name,
  2. name with a trailing () stripped,
  3. any item whose name ends in .<name> (bare-name fallback, since Documenter inventories use fully qualified names like MyPkg.myfunction). The item URI’s trailing $ shorthand is expanded before joining.