https://github.com/cran/XML
Raw File
Tip revision: 3c0b64398bf79b865a4134380b14356c1683f77f authored by Duncan Temple Lang on 31 May 2015, 00:00:00 UTC
version 3.98-1.2
Tip revision: 3c0b643
xmlTree.R
tt = xmlTree("doc")

# Shows that we can create the children within the call to create
# a parent.

tt$addTag("a",
           tt$addTag("b", tt$addTag("c")),
           tt$addTag("d", tt$addTag("e")))

           
           
back to top