| Crates.io | onenote_parser |
| lib.rs | onenote_parser |
| version | 1.1.0 |
| created_at | 2020-10-16 18:13:32.652038+00 |
| updated_at | 2025-12-30 12:30:34.252029+00 |
| description | A parser for Microsoft OneNote® files |
| homepage | |
| repository | https://github.com/msiemens/onenote.rs |
| max_upload_size | |
| id | 300812 |
| size | 70,580,154 |
A parser for Microsoft OneNote® files implemented in Rust.
The project supports reading OneNote files in the FSSHTTP packaging format ([MS-ONESTORE] 2.3 and [MS-ONESTORE] 2.8) as used by OneDrive and the modern OneNote apps. Feature contributions are welcome, but otherwise the project focuses on bugfixes and compatibility.
In addition to the publicly documented contents, this project also allows reading ink/handwriting content. Math/equation content is not supported (due to being very undocumented).¹
¹ If you have reliable documentation or samples, contributions are welcome.
Add the dependency to your Cargo.toml:
[dependencies]
onenote_parser = "1.1"
use onenote_parser::Parser;
use std::path::Path;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut parser = Parser::new();
// .onetoc2 file from a OneDrive download (FSSHTTP packaging format)
let notebook = parser.parse_notebook(Path::new("My Notebook.onetoc2"))?;
println!("sections: {}", notebook.entries().len());
Ok(())
}
Enable the backtrace feature to capture a std::backtrace::Backtrace on
parser errors. This can help pinpoint where a parsing failure originated and
is exposed through std::error::Error::backtrace().
[dependencies]
onenote_parser = { version = "1.1", features = ["backtrace"] }
The API is considered stable and will not change without a major version bump. Releases follow semantic versioning.
The code organization and architecture follows the OneNote file format which is built from several layers of encodings:
fsshttpb/: This implements the FSSHTTP binary packaging format as specified
in [MS-FSSHTTPB]: Binary Requests for File Synchronization via SOAP Protocol.
This is the lowest level of the file format and specifies how objects and their
relationships are encoded (and decoded) from a binary stream (in our case a file).onestore/: This implements the OneStore format as specified in
[MS-ONESTORE]: OneNote Revision Store File Format which describes how a
OneNote revision store file (also called OneStore) containing all OneNote objects
is stored in a FSSHTTP binary packaging file. This also includes the file header
([MS-ONESTORE] 2.8) and then how the OneNote revision store is built from the
FSSHTTP objects and revisions ([MS-ONESTORE] 2.7).one/: This implements the OneNote file format as specified in [MS-ONE]:
OneNote File Format. This specifies how objects in a OneNote file are parsed
from a OneStore revision file.onenote/: This finally implements an API that provides access to the data
stored in a OneNote file. It parses the FSSHTTPB data, the revision store
data and then constructs the objects contained by the OneNote file. This includes
resolving all references, e.g. looking up pages' paragraphs.This project is neither related to nor endorsed by Microsoft in any way. The author does not have any affiliation with Microsoft.