The following XML has an exemple of an element that has nested fields (title, author etc) and a text (Blah Blah...):
<?xml version="1.0" encoding="UTF-8"?>
<book category="cooking">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
Blah Blah Blah Bleh Blah
</book>
I've coded this structure to decode this XML but I don't know which structure tag I should use in this case. I search in the docs but i have found nothing.
type Book struct{
t string `xml:"book>title"`
p string `xml:"book>price"`
y string `xml:"book>year"`
a string `xml:"book>author"`
blah string ???????
}