We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ce6b6a commit 6028786Copy full SHA for 6028786
macromania_temporary_monorepo/macromania_defref/mod.tsx
@@ -1073,11 +1073,11 @@ function addDataAttributes(
1073
if (includeAnchor) {
1074
const previewPath = getPreviewPath(ctx);
1075
1076
- let finalComponent = `${name}.html?def#${
+ let finalComponent = `${name}.html?def=${
1077
replacementId === undefined ? name : replacementId
1078
}`;
1079
for (const [key, value] of queryParams) {
1080
- finalComponent = `${finalComponent}&${key}#${value}`;
+ finalComponent = `${finalComponent}&${key}=${value}`;
1081
}
1082
1083
previewPath.push(finalComponent);
0 commit comments