-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Broken internal links #219
Comments
Indeed. The issue is here DocumenterVitepress.jl/src/writer.jl Line 933 in b7c3fd0
DocumenterVitepress.jl/src/writer.jl Line 945 in b7c3fd0
The first one is going into the |
Hmm, maybe I got the types wrong. Would have to check, maybe with an MWE in a PR to this repo so we can verify it works... Am slammed today but will look at this tomorrow. |
I am having an issue with respect to internal links.
Following the Vite doc, https://vitepress.dev/guide/markdown#internal-links, I am trying to link from
/getting_started/introduction.md
to/concepts/bc.md
in https://ptsolvers.github.io/Chmy.jl/dev/getting_started/introduction#Boundary-Conditions.I am thus implementing it as
initial or [boundary conditions](../concepts/bc.md)
but upon building, this results in
initial or <a href="./concepts/bc">boundary conditions</a>
which in turns returns a 404.
Am I doing something wrong or is there an issue with parsing internal links?
The text was updated successfully, but these errors were encountered: