feat: add local OneNote and ONEPKG reader

This commit is contained in:
2026-07-22 17:06:03 +02:00
commit f581cbdced
93 changed files with 14949 additions and 0 deletions

15
src/onenote/index.ts Normal file
View File

@@ -0,0 +1,15 @@
export {
detectOneNoteFormat,
type OneNoteFormatDetection,
type OneNoteFormatKind,
} from './parser/detect-format.js';
export { OneNoteParserError } from './parser/error.js';
export {
DEFAULT_ONENOTE_PARSER_LIMITS,
type OneNoteParserLimits,
} from './parser/limits.js';
export {
parseOneNoteSection,
type ParseOneNoteSectionOptions,
} from './parser/parse-section.js';
export type { OneNotePageSummaryDto, OneNoteSectionDto } from './model/dto.js';