docx Questions

1

Solved

I am trying to migrate my Node.js application from Google Cloud Functions to Amazon Lambda. The application load docx file from Amazon S3, process it and return that docx file. However I got stuck ...
Enchanting asked 14/11, 2018 at 10:27

4

I have automated my build to convert Markdown files to DOCX files using Pandoc. I have even used a reference document for the final document's styling. The command I use is: pandoc -f markdown -t ...
Caron asked 10/1, 2013 at 2:12

1

Solved

I am using RMarkdown to write my MSc thesis, in a language different than English. The thesis shall be rendered in .docx format. Reading around SO, I found that it is possible to provide some pando...
Leacock asked 24/10, 2018 at 20:19

1

Solved

I followed the instructions in this answer: https://mcmap.net/q/158824/-pandoc-markdown-page-break and I could manage to create and use a filter to create a new page whenever I want in a conversion...
Expugnable asked 19/10, 2018 at 9:58

0

I had following code to render total page number in word/document.xml of my .docx file. <w:r w:rsidR="004D2840"><w:rPr><w:sz w:val="24"/><w:szCs w:val="24"/></w:rPr>&...
Epiphytotic asked 20/9, 2018 at 9:47

2

Solved

I would like to use jinja2 for word templating like mentioned is this short article. The problem I'm facing is as follows, if I put {{title}} in my word-file the resulting xml can look like this: ...
Tafoya asked 12/2, 2015 at 21:27

2

While parsing .docx file contents in form of xml (word/document.xml) with beautifulsoup4 (with lxml installed, as required) I encountered one problem. This part from xml: ... <a:graphic xmlns...
Dexterdexterity asked 24/7, 2014 at 15:23

0

My aim is to accept all revisions for a .docx files using Java. I've already used the apache-poi project to highlight sentences in docx, so I'm not entirely new to that project. Here is what I've ...
Severable asked 29/8, 2018 at 9:3

2

Solved

I'm currently trying to work with docx files using PHPWord library and its templating system. I have found and updated someones (cant remember the name, but its not important) path to this library ...
Bisect asked 17/7, 2013 at 13:45

3

I need to setup cells borders in table with python-docx, but can't find how to. Please help.
Shipload asked 11/10, 2015 at 20:17

2

Solved

I've been banging my head on this one for a few hours, and I'm sure the solution is quite simple, or non-existent. I'm trying to convert an html file to docx! <!DOCTYPE html> <html> ...
Gabie asked 7/4, 2015 at 3:9

3

I am trying to create an AddAlternativeFormatImportPart in a .docx file in order to reference it in the document via an AltChunk. the problem is that the code below causes the docx file to read as ...
Mandymandych asked 23/12, 2011 at 14:30

1

I want to read the docx document paragraph by paragraph and if there is a picture (InlineShape), then process it with the text around it. The function Document.inline_shapes will give the list of a...
Ceres asked 12/4, 2018 at 15:40

1

Solved

I have added some page number in footer. It is visible in document properly. But if i unzip docx and check the footer.xml only some random page numbers are there. so how MS-Word is able to display ...
Tine asked 8/2, 2018 at 8:0

7

I have a docx file and I need to replace some text. This is done inside codeigniter framework; here is the code: $this->load->library('word'); $template = $this->word->loadTemplate($_...
Harlow asked 28/5, 2013 at 14:11

1

Solved

I have a word file (.docx) with table of data, I am trying to create a pandas data frame using that table, I have used docx and pandas module. But I could not create a data frame. from docx import...
Regality asked 26/12, 2017 at 10:42

6

Solved

I am trying to use docx.js to generate a Word document but I can't seem to get it to work. I copied the raw code into the Google Chrome console after amending line 247 to fix a "'textAlign' undefi...
Roughdry asked 9/4, 2013 at 10:48

2

I have learned that .docx files are basically binary files. But I'm unaware of the structure that lies beneath. What is the essential structure of a .docx file? Like, how long is the header? From ...
Palanquin asked 14/10, 2016 at 7:56

1

Solved

I want to be able to accept all changes from a MS Word (.docx) document from Python, preferably using python-docx module. I know how to do in Perl (see below for reference) but would like to have ...
Hawthorn asked 6/12, 2017 at 4:49

2

I am trying to make an executable of my program to give to my FTC team. Everything works but when I try to use my script that includes python-docx in it but it does not complete the whole thing. It...
Jig asked 26/2, 2016 at 2:30

4

Solved

I'm trying to create a parser to find the tracked changes and author of a Word .docx file... I found the document.xml but there are so many tags! Is there a glossary somewhere to what all those ta...
Careaga asked 12/10, 2017 at 16:6

1

Solved

I'm using the Python docx library to generate an document, that I would like to be able to open and find spelling errors in. But when I open the document none of the spelling errors flag (little re...
Mahaffey asked 22/8, 2017 at 14:3

0

I am working on a code to export CV profile data to a Word document, following a template. I am using C# and OpenXML. I load the template-file to a MemoryStream, then make a new WordprocessingDocu...
Festal asked 31/8, 2017 at 11:47

3

Solved

How can I save a org.docx4j.openpackaging.packages.WordprocessingMLPackage instance into ByteArrayInputStream, then It can be downloaded from server. Thanks.
Enidenigma asked 13/11, 2012 at 12:33

5

I have a piece of client side code that exports a .docx file from Google Drive and sends the data to my server. It's pretty straight forward, it just exports the file, makes it into a blob, and sen...
Eichelberger asked 24/5, 2017 at 21:24

© 2022 - 2024 — McMap. All rights reserved.