onenote.rs icon indicating copy to clipboard operation
onenote.rs copied to clipboard

A Rust OneNote file parser

Results 14 onenote.rs issues
Sort by recently updated
recently updated
newest added

Resolves: https://github.com/msiemens/onenote.rs/issues/12 This is a rather simple solution I've made that gets the job done. Perhaps a better implementation would read from anything that implements the Reader trait. Like how...

I would like the ability to open a OneNote section file from an in memory buffer such a slice of u8's. For context, my project is a malware scanner that...

The latest version of the OneNote web app apparently inserts images without a "last modified" time or the parser parses this property incorrectly, which causes a failure when parsing the...

I am unable to compile the project. OS: Debian testing rustc: 1.56.0 Error message: ``` error[E0308]: mismatched types --> src/reader.rs:44:9 | 43 | pub(crate) fn bytes(&self) -> &[u8] { |...