Ziv-Barber / officegen

Standalone Office Open XML files (Microsoft Office 2007 and later) generator for Word (docx), PowerPoint (pptx) and Excell (xlsx) in javascript. The output is a stream.
MIT License
2.65k stars 471 forks source link

Support paragraph styling inside tables #306

Open Jodge opened 5 years ago

Jodge commented 5 years ago

Currently the createTable() method only passes the tableStyle as options when creating a Paragraph

genobj.createTable = function(data, options) {
    var newP = genobj.createP(options)
    ...
}

It would be nice to also support MakeDocxP.prototype.addText to style the paragraph inside a table e.g. attributes like bold, highlight, underline, italic etc