1
0
mirror of https://github.com/fumiama/go-docx.git synced 2026-06-08 01:00:25 +08:00

fix: empty para in tablecell

This commit is contained in:
源文雨
2023-03-06 14:08:40 +08:00
parent bce9c3b8dc
commit e3d6e419d5
8 changed files with 178 additions and 169 deletions

View File

@@ -34,9 +34,12 @@ const (
XMLNS_WPS = `http://schemas.microsoft.com/office/word/2010/wordprocessingShape`
XMLNS_WPC = `http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas`
XMLNS_WPG = `http://schemas.microsoft.com/office/word/2010/wordprocessingGroup`
// XMLNS_MC = `http://schemas.openxmlformats.org/markup-compatibility/2006`
XMLNS_MC = `http://schemas.openxmlformats.org/markup-compatibility/2006`
// XMLNS_WP14 = `http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing`
XMLNS_O = `urn:schemas-microsoft-com:office:office`
XMLNS_V = `urn:schemas-microsoft-com:vml`
XMLNS_PICTURE = `http://schemas.openxmlformats.org/drawingml/2006/picture`
)
@@ -108,6 +111,11 @@ type Document struct {
// XMLMC string `xml:"xmlns:mc,attr,omitempty"` // cannot be unmarshalled in
// XMLWP14 string `xml:"xmlns:wp14,attr,omitempty"` // cannot be unmarshalled in
// XMLO string `xml:"xmlns:o,attr,omitempty"` // cannot be unmarshalled in
// XMLV string `xml:"xmlns:v,attr,omitempty"` // cannot be unmarshalled in
// MCIgnorable string `xml:"mc:Ignorable,attr,omitempty"`
Body Body `xml:"w:body"`
}