Try one of these options from tika-app.  I'd like to document every
configurable parser in javadocs for each parser...not there yet.

} else if (arg.equals("--dump-minimal-config")) {
    pipeMode = false;
    dumpConfig(TikaConfigSerializer.Mode.MINIMAL);
} else if (arg.equals("--dump-current-config")) {
    pipeMode = false;
    dumpConfig(TikaConfigSerializer.Mode.CURRENT);
} else if (arg.equals("--dump-static-config")) {
    pipeMode = false;
    dumpConfig(TikaConfigSerializer.Mode.STATIC);
} else if (arg.equals("--dump-static-full-config")) {
    pipeMode = false;
    dumpConfig(TikaConfigSerializer.Mode.STATIC_FULL);

On Wed, Feb 10, 2021 at 10:24 AM Peter Kronenberg
<[email protected]> wrote:
>
> Where are the tika-config defaults defined?  Is there a ‘canonical’ list of 
> defaults, sort of like the .properties files?

Reply via email to