package
0.0.0-20240604135122-5b54e205b4f4
Repository: https://github.com/pebbe/howtogo.git
Documentation: pkg.go.dev

# README

To unmarshall XML that is not in UTF-8:

import (
    "golang.org/x/net/html/charset"
    "encoding/xml"
)

...


    d := xml.NewDecoder(os.Stdin)
    d.CharsetReader = charset.NewReaderLabel
    var t myType
    err := d.Decode(&t)

# Variables

No description provided by the author

# Structs

No description provided by the author
No description provided by the author

# Type aliases

ter voorkoming van oneindige recursie.