mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-28 23:52:47 +00:00
Some checks are pending
Deploy doc image by kubeconfig / build-fastgpt-docs-images (push) Waiting to run
Deploy doc image by kubeconfig / update-docs-image (push) Blocked by required conditions
Deploy doc image to vercel / deploy-production (push) Waiting to run
Build FastGPT images in Personal warehouse / build-fastgpt-images (push) Waiting to run
13 lines
442 B
TypeScript
13 lines
442 B
TypeScript
import { simpleMarkdownText } from '@fastgpt/global/common/string/markdown';
|
|
import { WorkerNameEnum, runWorker } from '../../worker/utils';
|
|
import { ImageType } from '../../worker/readFile/type';
|
|
|
|
export const htmlToMarkdown = async (html?: string | null) => {
|
|
const md = await runWorker<{
|
|
rawText: string;
|
|
imageList: ImageType[];
|
|
}>(WorkerNameEnum.htmlStr2Md, { html: html || '' });
|
|
|
|
return simpleMarkdownText(md.rawText);
|
|
};
|