easyai-plugin-dev-kit/manifest/Markdown2HtmlNode.ts
2025-10-06 16:08:44 +08:00

14 lines
498 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 页面插件示例
*/
import {ComponentSceneConst, type IComponentMateInfo} from "~/composables";
export default {
name: "Markdown2Html", // 插件名称 备注带上特殊标识不要和已有插件重名比如Remote+插件名
path: "./composables/worklfow/node/Markdown2HtmlNode.ts", // 插件路径
scenes: ComponentSceneConst.Workflow, // 组件场景
description: "",
data: undefined,
} satisfies IComponentMateInfo<typeof ComponentSceneConst.Workflow>;