SynapEditor API 3.3.0
    Preparing search index...

    Interface SynapEditorModelDiffOptions

    Comparison options passed to the getModelDiffHTML method.

    interface SynapEditorModelDiffOptions {
        htmlOptions?: SynapEditorGetPublishingHtmlOptions;
        style?: {
            delete?: { borderColor?: string; color?: string };
            edit?: { borderColor?: string; color?: string };
        };
    }
    Index

    Properties

    Properties

    Options to apply when generating publishing HTML.

    style?: {
        delete?: { borderColor?: string; color?: string };
        edit?: { borderColor?: string; color?: string };
    }

    Style settings for change highlighting.

    Type Declaration

    • Optionaldelete?: { borderColor?: string; color?: string }

      Color settings for deleted areas.

    • Optionaledit?: { borderColor?: string; color?: string }

      Color settings for edited areas.