View source: R/xml_structure.R
xml_structure | R Documentation |
Show the structure of an html/xml document without displaying any of
the values. This is useful if you want to get a high level view of the
way a document is organised. Compared to xml_structure
,
html_structure
prints the id and class attributes.
xml_structure(x, indent = 2, file = "")
html_structure(x, indent = 2, file = "")
x |
HTML/XML document (or part there of) |
indent |
Number of spaces to ident |
file |
A connection, or a character string naming the file
to print to. If |
xml_structure(read_xml("<a><b><c/><c/></b><d/></a>"))
rproj <- read_html(system.file("extdata", "r-project.html", package = "xml2"))
xml_structure(rproj)
xml_structure(xml_find_all(rproj, ".//p"))
h <- read_html("<body><p id = 'a'></p><p class = 'c d'></p></body>")
html_structure(h)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.