(relativePath: string, _change: WorkspaceFileChange)
| 237 | } |
| 238 | |
| 239 | function includeWorkspaceFile(relativePath: string, _change: WorkspaceFileChange): boolean { |
| 240 | return FILE_BROWSER_EXTENSIONS.test(relativePath) && !isFileBrowserExcludedPath(relativePath); |
| 241 | } |
| 242 | |
| 243 | /** Serve a linked markdown document. Uses shared resolveMarkdownFile for parity with Bun server. */ |
| 244 | export async function handleDocRequest(res: Res, url: URL, options: HandleDocOptions = {}): Promise<void> { |
nothing calls this directly
no test coverage detected