| 123456789101112131415 |
- import { XssOptionConfig } from '~/services/xss/xssOption';
- import { RehypeSanitizeOptionConfig } from '../rehype';
- export type RendererConfig = {
- isEnabledLinebreaks: boolean,
- isEnabledLinebreaksInComments: boolean,
- adminPreferredIndentSize: number,
- isIndentSizeForced: boolean,
- highlightJsStyleBorder: boolean,
- plantumlUri: string | null,
- blockdiagUri: string | null,
- } & XssOptionConfig & RehypeSanitizeOptionConfig;
|