We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hugo-theme-meme/layouts/partials/components/post-gitinfo.html
Lines 42 to 50 in e927542
So in post-gitinfo.html we use .Path to combine editURL, it works well on Linux, but not working on Windows.
.Path
editURL
On Windows, .Path like foo/bar will be "converted" to foo\bar, which produces a wrong URL.
foo/bar
foo\bar
Also, we should check all usages of .Path and .Dir in MemE.
.Dir
The text was updated successfully, but these errors were encountered:
Notes:
Sorry, something went wrong.
fix: resolve the editURL problem on Windows (#308)
25be50d
updates #279
fix: resolve the editURL problem on Windows (reuixiy#308)
8c115be
updates reuixiy#279
reuixiy
No branches or pull requests
hugo-theme-meme/layouts/partials/components/post-gitinfo.html
Lines 42 to 50 in e927542
So in post-gitinfo.html we use
.Path
to combineeditURL
, it works well on Linux, but not working on Windows.On Windows,
.Path
likefoo/bar
will be "converted" tofoo\bar
, which produces a wrong URL.Also, we should check all usages of
.Path
and.Dir
in MemE.The text was updated successfully, but these errors were encountered: