diff options
Diffstat (limited to 'docs/api')
| -rw-r--r-- | docs/api/ApiIndex.vue | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/api/ApiIndex.vue b/docs/api/ApiIndex.vue index 55efaeca..6500ae69 100644 --- a/docs/api/ApiIndex.vue +++ b/docs/api/ApiIndex.vue @@ -97,13 +97,11 @@ onUnmounted(() => window.removeEventListener('keydown', apiSearchFocusHandler)); <div class="api-groups"> <div v-for="item of section.items" :key="item.text" class="api-group"> <h3> - <a :href="item.link + '.html'">{{ item.text }}</a> + <a :href="item.link">{{ item.text }}</a> </h3> <ul> <li v-for="h of item.headers" :key="h.anchor"> - <a :href="item.link + '.html#' + slugify(h.anchor)">{{ - h.text - }}</a> + <a :href="item.link + '#' + slugify(h.anchor)">{{ h.text }}</a> </li> </ul> </div> |
