Skip to content

A native Go reader for the old Microsoft Word .doc binary format files

License

Notifications You must be signed in to change notification settings

robarchibald/doc2txt

Repository files navigation

doc2txt

Build Status Coverage Status

A native Go reader for the old Microsoft Word .doc binary format files

Example usage:

f, _ := os.Open(`testData\simpleDoc.doc`)
buf, err := ParseDoc(f)
if err != nil {
  // handle error
}
// buf now contains an io.Reader which you can save to the file system or further transform

Special Thanks

A great big thank you to Richard Lehane. His (https://github.com/richardlehane/mscfb got me started, his https://github.com/richardlehane/doctool project got me closer and his answer to questions via email helped get me to the finish line. Thanks Richard!

About

A native Go reader for the old Microsoft Word .doc binary format files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages