LuxDL / DocumenterVitepress.jl

Documentation with Documenter.jl and VitePress
https://luxdl.github.io/DocumenterVitepress.jl/
MIT License
64 stars 9 forks source link

blank space in urls #21

Closed lazarusA closed 4 months ago

lazarusA commented 4 months ago

When generating links into the markdown file for API functions, sometimes there will spaces in between the function definitions, such as:

/api/mapCube-Tuple{Function, Tuple, Vararg{Any}}

the correct link can be obtained by adding the space character

%20

Hence, a solution to this could be to find a way at parsing time to include this character in such scenario, namely

/api/mapCube-Tuple{Function,%20Tuple,%20Vararg{Any}}

Another example could be to go from this

/api#getAxis-Tuple{Any, Any}

to this

/api#getAxis-Tuple{Any,%20Any}