https://github.com/cran/XML
Raw File
Tip revision: 9ee7aebbd4099fb9a462c14f75a73eb3755b1612 authored by Duncan Temple Lang on 03 October 2007, 00:00:00 UTC
version 1.93-2
Tip revision: 9ee7aeb
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