gitea源码

1234567891011
  1. export type FileRenderPlugin = {
  2. // unique plugin name
  3. name: string;
  4. // test if plugin can handle a specified file
  5. canHandle: (filename: string, mimeType: string) => boolean;
  6. // render file content
  7. render: (container: HTMLElement, fileUrl: string, options?: any) => Promise<void>;
  8. };