NOTICE: THIS SOFTWARE IS UNDER DEVELOPMENT AND ITS API IS NOT YET STABLE
A pure Julia package to work with Docx (Word) documents.
This package aims to easily integrate with the packages of the JuliaText organization.
- This package is heavily inspired by python-docx
julia> using Pkg; Pkg.add("Docx")
using Docx
document = Docx.open("/path/to/document.docx")
Obtaining the plain text from the document:
Docx.read(document, String)