docx
Here are 306 public repositories matching this topic...
-
Updated
May 24, 2020 - PHP
-
Updated
May 22, 2020 - Java
Is this a:
- Issue with the OpenXml library
- Question on library usage
Description
The document in https://docs.microsoft.com/en-us/dotnet/api/documentformat.openxml.drawing.textparagraphpropertiestype?view=openxml-2.8.1 is error
Observed
The document say th
When creating a document, things get a little annoying once you start working with tables. I think one of the main annoyances is that once you have a table in the document, you cannot continue adding content after you've inserted the table. Instead you have to do something like:
p1 := doc.AddParagraph()
pAfterTable := doc.InsertParagraphAfter(p1)
table := doc.InsertTableAfter(p1)
//To get a better impression of the final images, could you please add the generated documents in the tests to the repo?
I have read the docs but seeing final results could give a better first impression.
For example I'd like to see:
- header an footer styles
- a complex microsoft word document converted to pdf
What are the limits to the conversion process, e.g. when rendering footnotes
When i Installing Document Server for Linux on CentOS7.5.
Reference:https://helpcenter.onlyoffice.com/server/linux/document/linux-installation-centos.aspx
In the end,the document server is ok,
but When I test editing files,
ws://XXXX/5.5.1-76/doc/b81fdff747a247929253f4701a92bc521588227954180/c/208/zp1umjpc/websocket
This link has been pending.
Centos7.5:port all open,firewall is closed.
Wha
-
Updated
May 28, 2020 - JavaScript
I really like the new design of the webpage. A few suggestions/comments:
- The initial page is a bit empty and doesn't give much insight into how zettlr looks / works. For example, compare it to the landing page of https://code.visualstudio.com/. I would propose to add a screenshot to left as for the visual studio page, or move everything up a bit and add a screenshot that overflows to the second
I just updated to version 1.6.0.0 of Xceed.Document.NET and in attempting to insert an image as follows and documented elsewhere, I get an ObjectDisposedException: Package object was closed and disposed, so cannot carry out operations on this object or any stream opened on a part of this package.
Xceed.Document.NET.Image logoImg = doc.AddImage(imgFilePath); // Exception thrown here
Xceed.Docum
Thanks for creating this package!
But I'm trying to use different bullet points. They look too big for me so I created a new numbering with a different icon but I cannot select this new numbering because it's always using the id = 1 :https://github.com/dolanmiu/docx/blob/5.0.0-rc5/src/file/paragraph/paragraph.ts#L158.
If you choose numbering you can in fact select the id:
https://github.com
Do you want to request a feature or report a bug?
Request a feature.
What is the current behavior?
The equation editor of OnlyOffice generally uses LaTex shortcuts, which is good.
But the \frac shortcut for creating fractions does not work.
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.
**What is the ex
I tried to copy a paragraph containing footnote from a word document.
When I pasted that paragraph, the footnote was copied as a Link
When I tried the same from google docs, the footnote was not copied.
Let me know your thinking on this so that I can help in fixing this issue
I'm trying to figure out how to replace the paragraphs with translated text. I can't quite figure out how the 'replace_entry' function works. Is that the best way to go about it? The documentation is pretty scarce, it would be awesome if someone could give me some pointers!
-
Updated
Apr 8, 2020 - Python
Describe the bug
Whenever .open is called on a Document object that has a directory that is not a word document the application crashes.
To Reproduce
Steps to reproduce the behavior:
create a project and add this code:
duckx::Document doc("test.docx");
doc.open();
make sure test.docx does not exist
run the code
Expected behavior
A new docx file named test should be c
This leads to a:
Import-Module PSWriteWord -Force
$FilePath = "$Env:USERPROFILE\Desktop\PSWriteWord-Example-ListItems6.docx"
$ListOfItems = @('Te
This package is incredibly handy, thanks!
I don't know much about XML, but looking at an unzipped docx file, it appears that, if the footer exists, each section of document has a corresponding footer XML file (e.g., footer1.xml). Would it be possible to add a function that iterates through and extracts a document's footers (and headers, I suppose, but for the motivating use case, it's the fo
-
Updated
Apr 6, 2016 - PHP
-
Updated
Mar 8, 2020 - Shell
First of all, thank you for making this tool!
I tried it today, and saw that the excel report could be improved with data already present in the docx report
Expected behavior
The excel report includes summary metrics, such as
| Quality Gate | Reliability | Security | Maintainability | Coverage | Duplication |
|---|
and
| Cyclomatic Complexity | Cognitive
-
Updated
Aug 12, 2019 - C#
Improve this page
Add a description, image, and links to the docx topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the docx topic, visit your repo's landing page and select "manage topics."



Describe the Bug
When users write things on Google Docs and copy & paste it to our app. That text gets garbled when turning it into a word document. Things like the double quotes and other special characters are Unicode and causes strange characters to appear on the converted document.
Steps to Reproduce