Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 347 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 347 Bytes

Resolves placeholders within KDBX files

Inject custom placeholder configuration:

{
    examplePlugin: {
        isMatch: (text: string) => boolean;
        onMatch: (text: string, entry: KdbxEntry) => boolean; // return false to cancel invocation of replaceMatch
        replaceMatch: (text: string, entry: KdbxEntry) => string;
    }
}