onenote_parser 2.0.0

A parser for Microsoft OneNoteĀ® files
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! A OneStore parsing implementation for the OneNote 2016 format.
//! Parses `.one` files and has partial support for `.onetoc2` files.

mod common;
mod file_node;
pub(crate) mod file_structure;
mod objects;
pub(crate) mod one_store_file;
pub(crate) mod parse;

pub(crate) use common::exguid::ExGuid;