diff --git a/src/onenote/parser/limits.ts b/src/onenote/parser/limits.ts index 6f6ade3..7f54b4a 100644 --- a/src/onenote/parser/limits.ts +++ b/src/onenote/parser/limits.ts @@ -53,11 +53,11 @@ export const DEFAULT_ONENOTE_PARSER_LIMITS: Readonly = { maxAutoRenderImageDimension: DEFAULT_BROWSER_IMAGE_SAFETY_LIMITS.maxDimension, maxAutoRenderImagePixels: DEFAULT_BROWSER_IMAGE_SAFETY_LIMITS.maxPixels, maxGraphDepth: 256, - maxContentBlocks: 1_000_000, - maxTextRuns: 1_000_000, - maxTableCells: 1_000_000, - maxInkPoints: 5_000_000, - maxPages: 100_000, + maxContentBlocks: 100_000, + maxTextRuns: 100_000, + maxTableCells: 100_000, + maxInkPoints: 100_000, + maxPages: 10_000, maxDiagnostics: 10_000, maxExtractedTextChars: 2_000_000, };