Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 606 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 606 Bytes

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)