/** * -------------------------------------------------------------------- * docmd : the zero-config documentation engine. * * @package @docmd/core (and ecosystem) * @website https://docmd.io * @repository https://github.com/docmd-io/docmd * @license MIT * @copyright Copyright (c) 2025-present docmd.io * * [docmd-source] - Please do not remove this header. * -------------------------------------------------------------------- */ /** * Renders an EJS template string with provided data. * * Injects docmd-specific context helpers (renderIcon, fixLink). * Utilizes lite-template natively, while passing a preprocessor hook * to automatically strip YAML frontmatter out of any recursive file includes. */ declare function renderTemplateAsync(templateString: any, data: any, options?: any): Promise; declare function fixHtmlLinks(url: any, root?: string, isOffline?: boolean, base?: string): any; export { renderTemplateAsync, fixHtmlLinks };