Sujith G
Sujith G
A script similar to [this](https://github.com/open-xml-templating/docxtemplater-build/blob/master/bin.bash) would do.
`linkmodulebundle.js` got generated ? I've got one generated can you check it [bundle](https://gist.github.com/sujith3g/5ef4429d45a8e9be50e792bd1cffcf5a)
You can use [this file](https://github.com/sujith3g/docxtemplater-link-module/tree/master/browser), this works with docxtemplater v2.1.5 or below.
``` var loadFile=function(url,callback){ JSZipUtils.getBinaryContent(url,callback); } loadFile("./example-href.docx",function(err,content){ if (err) { throw e}; var linkModule = new LinkModule(); doc=new Docxgen(content); doc.attachModule(linkModule); doc.setData( { link : { text : "dolor sit", url :...