CoreMedia CKEditor 5 Plugins
    Preparing search index...

    Pre-processors to run prior to transforming anchor elements.

    interface HTMLAnchorElementPreprocessor {
        toData?: (element: HTMLAnchorElement) => void;
        toView?: (element: HTMLAnchorElement) => void;
    }
    Index

    Properties

    Properties

    toData?: (element: HTMLAnchorElement) => void

    Rule to possibly pre-process the HTMLAnchorElement prior to default toData processing.

    Type Declaration

      • (element: HTMLAnchorElement): void
      • Parameters

        • element: HTMLAnchorElement

          the element to transform

        Returns void

    toView?: (element: HTMLAnchorElement) => void

    Rule to possibly pre-process the HTMLAnchorElement prior to default toView processing.

    Type Declaration

      • (element: HTMLAnchorElement): void
      • Parameters

        • element: HTMLAnchorElement

          the element to transform

        Returns void