(kind: string, name: string)
| 55 | * Create a URL-safe HTML anchor ID for a symbol. |
| 56 | */ |
| 57 | export function createSymbolId(kind: string, name: string): string { |
| 58 | return `${kind}-${name}`.replace(/[^a-z0-9-]/gi, '_') |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Parse JSDoc {@link} tags into HTML links. |
no outgoing calls
no test coverage detected