mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 06:21:24 +00:00
31 lines
672 B
Go
31 lines
672 B
Go
package xmlquery
|
|
|
|
import (
|
|
"encoding/xml"
|
|
)
|
|
|
|
type ParserOptions struct{
|
|
Decoder *DecoderOptions
|
|
}
|
|
|
|
func (options ParserOptions) apply(parser *parser) {
|
|
if options.Decoder != nil {
|
|
(*options.Decoder).apply(parser.decoder)
|
|
}
|
|
}
|
|
|
|
// DecoderOptions implement the very same options than the standard
|
|
// encoding/xml package. Please refer to this documentation:
|
|
// https://golang.org/pkg/encoding/xml/#Decoder
|
|
type DecoderOptions struct{
|
|
Strict bool
|
|
AutoClose []string
|
|
Entity map[string]string
|
|
}
|
|
|
|
func (options DecoderOptions) apply(decoder *xml.Decoder) {
|
|
decoder.Strict = options.Strict
|
|
decoder.AutoClose = options.AutoClose
|
|
decoder.Entity = options.Entity
|
|
}
|