renderer.ts 407 B

1234567891011121314
  1. import type { RehypeSanitizeConfiguration } from './rehype-sanitize';
  2. export type RendererConfig = {
  3. isSharedPage?: boolean
  4. isEnabledLinebreaks: boolean,
  5. isEnabledLinebreaksInComments: boolean,
  6. adminPreferredIndentSize: number,
  7. isIndentSizeForced: boolean,
  8. highlightJsStyleBorder: boolean,
  9. isEnabledMarp: boolean,
  10. drawioUri: string,
  11. plantumlUri: string,
  12. } & RehypeSanitizeConfiguration;