Docx.jl

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.

Installation

julia> using Pkg; Pkg.add("Docx")

Usage

using Docx

document = Docx.open("/path/to/document.docx")

Obtaining the plain text from the document:

Docx.read(document, String)