## Search terms externalSymbolLinkMappings ## Expected Behavior https://typedoc.org/documents/Options.Comments.html#externalsymbollinkmappings: > The string `"#"` may also be specified to indicate to TypeDoc that the type should be marked as resolved but no link should be created. No link is generated if link is set of `"#"` in `externalSymbolLinkMappings`. ## Actual Behavior A link is generated. ```html <a href="#">!Promise</a> ``` ## Steps to reproduce the bug ```js // typedoc.json { "externalSymbolLinkMappings": { // used by {@link !Promise} "global": { "Promise": "#" } } } ``` ## Environment - Typedoc version: 0.27.9 - TypeScript version: - Node.js version: v22.12.0 - OS: Windows 11