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
Unsafe:
Characters can be unsafe for a number of reasons. The space
character is unsafe because significant spaces may disappear and
insignificant spaces may be introduced when URLs are transcribed or
typeset or subjected to the treatment of word-processing programs.
The characters "<" and ">" are unsafe because they are used as the
delimiters around URLs in free text; the quote mark (""") is used to
delimit URLs in some systems. The character "#" is unsafe and should
always be encoded because it is used in World Wide Web and in other
systems to delimit a URL from a fragment/anchor identifier that might
follow it. The character "%" is unsafe because it is used for
encodings of other characters. Other characters are unsafe because
gateways and other transport agents are known to sometimes modify
such characters. These characters are "{", "}", "|", "", "^", "~",
"[", "]", and "`".
Bug report
Version
Reproduced in the following versions:
Steps to reproduce
npm run dev
http://localhost:8080/Second%20Document.html
What is expected?
On every page I should see Prev/Next Links (if exists)
What is actually happening?
On a page which contains white space in its filename, I don't see any Prev/Next Links at the bottom.
Other relevant information
Here's what I've found so far. It seems VuePress tries to match current page from
sidebarItems
and get corresponding prev/next pages.Here you can see the path of current
$page
is/Second%20Document.html
. The whitespace is encoded there, which seems okay.Here you can see the path from
sidebarItems
and there the whitespace is not encoded. So VuePress cannot match current page.The text was updated successfully, but these errors were encountered: