mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
47 lines
1.1 KiB
Go
47 lines
1.1 KiB
Go
package yqlib
|
|
|
|
type XmlPreferences struct {
|
|
Indent int
|
|
AttributePrefix string
|
|
ContentName string
|
|
StrictMode bool
|
|
KeepNamespace bool
|
|
UseRawToken bool
|
|
ProcInstPrefix string
|
|
DirectiveName string
|
|
SkipProcInst bool
|
|
SkipDirectives bool
|
|
}
|
|
|
|
func NewDefaultXmlPreferences() XmlPreferences {
|
|
return XmlPreferences{
|
|
Indent: 2,
|
|
AttributePrefix: "+@",
|
|
ContentName: "+content",
|
|
StrictMode: false,
|
|
KeepNamespace: true,
|
|
UseRawToken: true,
|
|
ProcInstPrefix: "+p_",
|
|
DirectiveName: "+directive",
|
|
SkipProcInst: false,
|
|
SkipDirectives: false,
|
|
}
|
|
}
|
|
|
|
func (p *XmlPreferences) Copy() XmlPreferences {
|
|
return XmlPreferences{
|
|
Indent: p.Indent,
|
|
AttributePrefix: p.AttributePrefix,
|
|
ContentName: p.ContentName,
|
|
StrictMode: p.StrictMode,
|
|
KeepNamespace: p.KeepNamespace,
|
|
UseRawToken: p.UseRawToken,
|
|
ProcInstPrefix: p.ProcInstPrefix,
|
|
DirectiveName: p.DirectiveName,
|
|
SkipProcInst: p.SkipProcInst,
|
|
SkipDirectives: p.SkipDirectives,
|
|
}
|
|
}
|
|
|
|
var ConfiguredXMLPreferences = NewDefaultXmlPreferences()
|