We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature needed to give possibility to set the page range for header extraction, now the default value is set to 2 :
public String processHeader(String inputFile, boolean consolidate, BiblioItem result) { GrobidAnalysisConfig config = new GrobidAnalysisConfig.GrobidAnalysisConfigBuilder() .startPage(0) .endPage(2) .consolidateHeader(consolidate) .build(); return processHeader(inputFile, config, result); }
Also related to this issue which gives an example : #281
The text was updated successfully, but these errors were encountered:
make the start/end page for header processing customizable #282
8b0f16d
lfoppiano
Successfully merging a pull request may close this issue.
Feature needed to give possibility to set the page range for header extraction, now the default value is set to 2 :
Also related to this issue which gives an example : #281
The text was updated successfully, but these errors were encountered: