Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Technical name for text between XML tags

Tags:

xml

<fizzBuzz>
    Some text
</fizzBuzz>

What's the technical name (using XML verbage) for the text between fizzBuzz's starting and ending tags (in this case, Some text)? I am whipping up some documentation and almost referred to this as CDATA, but then stopped myself. And then I realized, to my horror, that I had no idea what it was.

Content? Tag bodies?

Online searching turned up, to my great surprise, nodda. Maybe this post can put an end to that. Thanks in advance!

like image 559
IAmYourFaja Avatar asked Mar 24 '12 00:03

IAmYourFaja


1 Answers

It's simply called the content of the element.

like image 185
Jon Avatar answered Oct 05 '22 17:10

Jon