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
菜单/多级菜单下,如果使用内部链接的格式‘/page/xxx’,点击以后只是url栏变了地址,但是没有跳转到相关页面。 外部链接的方式没有这个问题,也就是'https://domain.com/page/xxx'。如果可以改进就最好了。
The text was updated successfully, but these errors were encountered:
额,我研究了一下 tlink.js
hexo.extend.filter.register("after_post_render", (data) => { const re = /_posts\/(.*).md/g; data.content = data.content.replace(re, function (str1, str2) { str2 = str2.replace(/\//g, "%2F") return str2 }) return data });
放在根目录下的scripts文件夹就好了
Sorry, something went wrong.
This issue is stale because it has been open for 30 days with no activity.
No branches or pull requests
菜单/多级菜单下,如果使用内部链接的格式‘/page/xxx’,点击以后只是url栏变了地址,但是没有跳转到相关页面。
外部链接的方式没有这个问题,也就是'https://domain.com/page/xxx'。如果可以改进就最好了。
The text was updated successfully, but these errors were encountered: