You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working a bit on keyword arguments and mentioning their defaults.
I noticed that [`Example`](@ref) is rendered nicely on REPL, while @extref ones are not. Could this be fixed by defining a certain show Method?
Example:
If we have ManifoldsBase.jl in the Documenter plugin like
"""
* `X = ` [`zero_vector`](@extref `ManifoldsBase.zero_vector-Tuple{AbstractManifold, Any}`)`(M,p)` :
specify a memory internally to store the gradient
"""
function foo end
its docs on help?> foo look like
• X = zero_vector (@extref `ManifoldsBase.zero_vector-Tuple{AbstractManifold, Any}`)(M,p): specify a memory internally to store the gradient
while I would prefer them to look like (as is done for @refs
• X = zero_vector (M,p): specify a memory internally to store the gradient
(zero_vector is light blue since it is a link in REPL)
The text was updated successfully, but these errors were encountered:
I am working a bit on keyword arguments and mentioning their defaults.
I noticed that
[`Example`](@ref)
is rendered nicely on REPL, while@extref
ones are not. Could this be fixed by defining a certain show Method?Example:
If we have
ManifoldsBase.jl
in the Documenter plugin likeand define somewhere in a doctoring
its docs on
help?> foo
look likewhile I would prefer them to look like (as is done for
@ref
s(
zero_vector
is light blue since it is a link in REPL)The text was updated successfully, but these errors were encountered: