refactor: inline table of contents

This commit is contained in:
iCrawl
2022-08-17 23:21:23 +02:00
parent 872ce801a0
commit 17ab0e652c
14 changed files with 97 additions and 90 deletions

View File

@@ -38,7 +38,7 @@ export function generatePath(items: readonly ApiItem[]) {
const functionItem = item as ApiFunction;
path += `${functionItem.displayName}${
functionItem.overloadIndex && functionItem.overloadIndex > 1 ? `:${functionItem.overloadIndex}` : ''
}:/`;
}/`;
break;
default:
path += `${item.displayName}/`;