@signalwire/docusaurus-plugin-llms-txt
Version:
Generate Markdown versions of Docusaurus HTML pages and an llms.txt index file
13 lines • 584 B
TypeScript
/**
* HTML file processing
* Process individual HTML files to extract content and convert to markdown
*/
import type { DocInfo, PluginOptions, Logger, CachedRouteInfo } from '../types';
/**
* Process a single HTML file → Markdown + metadata
* @internal
*/
export declare function processHtmlFileWithContext(fullHtmlPath: string, routePath: string, config: PluginOptions & {
path?: string;
}, mdOutDir: string, logger: Logger, siteUrl: string, outDir?: string, routeLookup?: Map<string, CachedRouteInfo>): Promise<DocInfo>;
//# sourceMappingURL=html-file-processor.d.ts.map