We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7acd0ce commit 155b184Copy full SHA for 155b184
docs/data/api.data.ts
@@ -62,10 +62,10 @@ function getHref(name: string, path: string): string {
62
}
63
break;
64
65
- case "marks/crosshair":
66
- return "interactions/crosshair";
67
case "marks/brush":
68
return "interactions/brush";
+ case "marks/crosshair":
+ return "interactions/crosshair";
69
case "transforms/basic": {
70
switch (name) {
71
case "filter":
@@ -141,7 +141,9 @@ export default {
141
throw new Error(`anchor not found: ${href}#${name}`);
142
143
144
- for (const {context: {href}} of allOptions) {
+ for (const {
145
+ context: {href}
146
+ } of allOptions) {
147
if (!anchors.has(`/${href}.md`)) {
148
throw new Error(`file not found: ${href}`);
149
0 commit comments