Skip to content
/ doc2txt Public
forked from robarchibald/doc2txt

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

License

Notifications You must be signed in to change notification settings

dcu/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

  • Go 100.0%