@asciidoctor/core - v4.0.3
    Preparing search index...

    Type Alias IncludeProcessorDslInterface

    IncludeProcessorDslInterface: Omit<DocumentProcessorDslInterface, "process"> & {
        handles(fn: (target: string) => boolean): void;
        handles(fn: (doc: Document, target: string) => boolean): void;
        process(
            fn: (
                this: IncludeProcessorDslInterface,
                document: Document,
                reader: PreprocessorReader,
                target: string,
                attributes: Record<string, string>,
            ) => void,
        ): void;
    }

    DSL interface for include processors.