1
0
mirror of https://github.com/fumiama/go-docx.git synced 2026-06-09 17:50:27 +08:00
This commit is contained in:
Gonzalo Fernandez-Victorio
2021-05-11 12:40:58 +01:00
parent 2c86c9ce8b
commit 54bd3d2d4a
9 changed files with 129 additions and 15 deletions

View File

@@ -3,8 +3,9 @@ package docxlib
import "encoding/xml"
type ParagraphChild struct {
Link *Hyperlink `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main hyperlink"`
Run *Run `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main r"`
Link *Hyperlink `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main hyperlink,omitempty"`
Run *Run `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main r,omitempty"`
Properties *RunProperties `xml:"http://schemas.openxmlformats.org/wordprocessingml/2006/main rPr,omitempty"`
}
type Paragraph struct {