diff options
| author | Shinigami <[email protected]> | 2022-09-09 17:47:23 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-09 11:47:23 +0200 |
| commit | 83b61429fa710903e4a82fe655a6c196deb16fbd (patch) | |
| tree | d2080a48849302e6786f3d270dfa50bf9e71e84d /docs | |
| parent | 5ae93a7f51d48b2f2f4999f5cfbd2b4a4a5bb272 (diff) | |
| download | faker-83b61429fa710903e4a82fe655a6c196deb16fbd.tar.xz faker-83b61429fa710903e4a82fe655a6c196deb16fbd.zip | |
docs: fix api search (#1361)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api/ApiIndex.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/api/ApiIndex.vue b/docs/api/ApiIndex.vue index 0846d9f2..ec9c752e 100644 --- a/docs/api/ApiIndex.vue +++ b/docs/api/ApiIndex.vue @@ -55,8 +55,8 @@ function slugify(text: string): string { .replace(/^\-+|\-+$/g, '') // ensure it doesn't start with a number (like #123) .replace(/^(\d)/, '_$1') - // // lowercase - // .toLowerCase() + // lowercase + .toLowerCase() ); } </script> @@ -84,7 +84,7 @@ function slugify(text: string): string { <ul> <li v-for="h of item.headers" :key="h.anchor"> <a :href="item.link + '.html#' + slugify(h.anchor)">{{ - h.anchor + h.text }}</a> </li> </ul> |
