Given a module hierarchy like
module A
module B; function foo end; end
module C
"""
bar(x)
Like [`foo`](@ref), but more `bar`.
"""
function bar end
end
end
How could I cross-reference foo
from the docstring of bar
using Documenter.jl? I have tried A.B.foo
, B.foo
, and ..B.foo
without success.