} else if ($_POST['operation'] === 'extracttexts') {
$res = PDFOperations::extractTexts($_POST['pdf'], $_POST['out'], $_POST['mode'] ?? 'standard', $_POST['method'] ?? 'fluidbook', $_POST['ignoreseparators'] ?? '');
} else if ($_POST['operation'] === 'extracthightlightsdata') {
- $res = PDFOperations::extractHighlightsData($_POST['pdf'], $_POST['out'], $_POST['mode'], $_POST['ignoreseparators']);
+ $res = PDFOperations::extractHighlightsData($_POST['pdf'], $_POST['out'], $_POST['mode'], $_POST['ignoreseparators'] ?? '');
} else if ($_POST['operation'] === 'extractmarkdown') {
$res = PDFOperations::extractMarkdown($_POST['pdf'], $_POST['out']);
} else if ($_POST['operation'] === 'extractpdfarea') {