We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 447b885 commit 55fadb0Copy full SHA for 55fadb0
markdown/index.html
@@ -299,7 +299,7 @@ <h2>Table of Contents</h2>
299
} else if (logicalHref.hostname == 'github.com') {
300
const parts = /(?<org>[^/]+)\/(?<repo>[^/]+)\/blob\/(?<branch>[^/]+)\/(?<path>.*)/.exec(logicalHref.pathname);
301
if (parts != null) {
302
- url.search = getMarkdownSearch(`=${parts.groups.org}/${parts.groups.repo}/${parts.groups.branch}/${parts.groups.path}`);
+ url.search = getMarkdownSearch(`${parts.groups.org}/${parts.groups.repo}/${parts.groups.branch}/${parts.groups.path}`);
303
a.href = url;
304
}
305
0 commit comments