1
0
mirror of https://github.com/fumiama/go-docx.git synced 2026-06-05 07:40:24 +08:00

🎨 改进代码样式

This commit is contained in:
github-actions[bot]
2023-02-23 09:50:21 +00:00
parent fbaed74afa
commit 47ee69ff90
6 changed files with 0 additions and 28 deletions

View File

@@ -65,10 +65,8 @@ func (b *Body) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
return err
}
}
}
return nil
}
// Document <w:document>
@@ -106,8 +104,6 @@ func (doc *Document) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error
return err
}
}
}
return nil
}

View File

@@ -59,10 +59,8 @@ func (r *Drawing) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
continue
}
}
}
return nil
}
// WPInline is an element that represents an inline image within a text paragraph.
@@ -184,10 +182,8 @@ func (r *WPInline) UnmarshalXML(d *xml.Decoder, start xml.StartElement) (err err
continue
}
}
}
return nil
}
// WPExtent represents the extent of a drawing in a Word document.
@@ -338,7 +334,6 @@ func (w *WPCNvGraphicFramePr) UnmarshalXML(d *xml.Decoder, start xml.StartElemen
continue
}
}
}
return nil
}
@@ -393,7 +388,6 @@ func (a *AGraphic) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
continue
}
}
}
return nil
}
@@ -434,7 +428,6 @@ func (a *AGraphicData) UnmarshalXML(d *xml.Decoder, start xml.StartElement) erro
continue
}
}
}
return nil
}
@@ -490,7 +483,6 @@ func (p *PICPic) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
continue
}
}
}
return nil
}
@@ -531,7 +523,6 @@ func (p *PICNonVisualPicProperties) UnmarshalXML(d *xml.Decoder, start xml.Start
continue
}
}
}
return nil
}
@@ -627,7 +618,6 @@ func (p *PICBlipFill) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error
continue
}
}
}
return nil
}
@@ -678,7 +668,6 @@ func (a *ABlip) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
continue
}
}
}
return nil
}
@@ -740,7 +729,6 @@ func (p *PICSpPr) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
continue
}
}
}
return nil
}
@@ -816,7 +804,6 @@ func (a *AXfrm) UnmarshalXML(d *xml.Decoder, start xml.StartElement) (err error)
continue
}
}
}
return nil
}

View File

@@ -37,8 +37,6 @@ func (r *Hyperlink) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
return err
}
}
}
return nil
}

View File

@@ -34,10 +34,8 @@ func (p *ParagraphProperties) UnmarshalXML(d *xml.Decoder, start xml.StartElemen
continue
}
}
}
return nil
}
// Paragraph <w:p>
@@ -177,9 +175,7 @@ func (p *Paragraph) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
}
children = append(children, elem)
}
}
p.Children = children
return nil
}

View File

@@ -81,11 +81,9 @@ func (r *Run) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
continue
}
}
}
return nil
}
// WTab is the literal tab
@@ -139,11 +137,9 @@ func (r *RunProperties) UnmarshalXML(d *xml.Decoder, start xml.StartElement) err
continue
}
}
}
return nil
}
// RunStyle contains styling for a run

View File

@@ -28,7 +28,6 @@ func (r *Text) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
if tt, ok := t.(xml.CharData); ok {
r.Text = string(tt) // implicitly copy
}
}
return nil