mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
2.9 KiB
50 lines
2.9 KiB
/// <reference types="./types" />
|
|
import * as adapterRender from "./ts/markdown/adapterRender";
|
|
declare class Vditor {
|
|
/** 点击图片放大 */
|
|
static adapterRender: typeof adapterRender;
|
|
/** 点击图片放大 */
|
|
static previewImage: (oldImgElement: HTMLImageElement, lang?: "en_US" | "fr_FR" | "ja_JP" | "ko_KR" | "ru_RU" | "sv_SE" | "zh_CN" | "zh_TW" | "pt_BR", theme?: string) => void;
|
|
/** 为 element 中的代码块添加复制按钮 */
|
|
static codeRender: (element: HTMLElement, option?: IHljs) => void;
|
|
/** 对 graphviz 进行渲染 */
|
|
static graphvizRender: (element: HTMLElement, cdn?: string) => void;
|
|
/** 为 element 中的代码块进行高亮渲染 */
|
|
static highlightRender: (hljsOption?: IHljs, element?: HTMLElement | Document, cdn?: string) => void;
|
|
/** 对数学公式进行渲染 */
|
|
static mathRender: (element: HTMLElement, options?: {
|
|
cdn?: string;
|
|
math?: IMath;
|
|
}) => void;
|
|
/** 流程图/时序图/甘特图渲染 */
|
|
static mermaidRender: (element: HTMLElement, cdn: string, theme: string) => void;
|
|
/** 支持markdown的思维导图 */
|
|
static markmapRender: (element: HTMLElement, cdn: string, theme: string) => void;
|
|
/** flowchart.js 渲染 */
|
|
static flowchartRender: (element: HTMLElement, cdn?: string) => void;
|
|
/** 图表渲染 */
|
|
static chartRender: (element: HTMLElement | Document, cdn: string, theme: string) => void;
|
|
/** 五线谱渲染 */
|
|
static abcRender: (element?: HTMLElement | Document, cdn?: string) => void;
|
|
/** 脑图渲染 */
|
|
static mindmapRender: (element: HTMLElement | Document, cdn: string, theme: string) => void;
|
|
/** plantuml渲染 */
|
|
static plantumlRender: (element?: HTMLElement | Document, cdn?: string) => void;
|
|
/** 大纲渲染 */
|
|
static outlineRender: (contentElement: HTMLElement, targetElement: Element, vditor?: IVditor) => string;
|
|
/** 为[特定链接](https://github.com/Vanessa219/vditor/issues/7)分别渲染为视频、音频、嵌入的 iframe */
|
|
static mediaRender: (element: HTMLElement) => void;
|
|
/** 对选中的文字进行阅读 */
|
|
static speechRender: (element: HTMLElement, lang?: "en_US" | "fr_FR" | "ja_JP" | "ko_KR" | "ru_RU" | "sv_SE" | "zh_CN" | "zh_TW" | "pt_BR") => void;
|
|
/** 对图片进行懒加载 */
|
|
static lazyLoadImageRender: (element?: HTMLElement | Document) => boolean;
|
|
/** Markdown 文本转换为 HTML,该方法需使用[异步编程](https://ld246.com/article/1546828434083?r=Vaness) */
|
|
static md2html: (mdText: string, options?: IPreviewOptions) => Promise<string>;
|
|
/** 页面 Markdown 文章渲染 */
|
|
static preview: (previewElement: HTMLDivElement, markdown: string, options?: IPreviewOptions) => Promise<void>;
|
|
/** 设置代码主题 */
|
|
static setCodeTheme: (codeTheme: string, cdn?: string) => void;
|
|
/** 设置内容主题 */
|
|
static setContentTheme: (contentTheme: string, path: string) => void;
|
|
}
|
|
export default Vditor;
|
|
|