|
@@ -1,5 +1,7 @@
|
|
|
import { XssOptionConfig } from '~/services/xss/xssOption';
|
|
import { XssOptionConfig } from '~/services/xss/xssOption';
|
|
|
|
|
|
|
|
|
|
+import { RehypeSanitizeOptionConfig } from '../rehype';
|
|
|
|
|
+
|
|
|
|
|
|
|
|
export type RendererConfig = {
|
|
export type RendererConfig = {
|
|
|
isEnabledLinebreaks: boolean,
|
|
isEnabledLinebreaks: boolean,
|
|
@@ -10,4 +12,4 @@ export type RendererConfig = {
|
|
|
|
|
|
|
|
plantumlUri: string | null,
|
|
plantumlUri: string | null,
|
|
|
blockdiagUri: string | null,
|
|
blockdiagUri: string | null,
|
|
|
-} & XssOptionConfig;
|
|
|
|
|
|
|
+} & XssOptionConfig & RehypeSanitizeOptionConfig;
|