All Projects → ropensci → xslt

ropensci / xslt

Licence: other
Extension of xml2 package for xsl transformations

Programming Languages

r
7636 projects
C++
36643 projects - #6 most used programming language
XSLT
1337 projects
HTML
75241 projects
shell
77523 projects

xslt

XSLT 1.0 Transformations

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Build Status AppVeyor Build Status CRAN_Status_Badge CRAN RStudio mirror downloads

An extension for the 'xml2' package to transform XML documents by applying an XSL stylesheet.

Usage

Basic example included with the package:

doc <- read_xml(system.file("examples/cd_catalog.xml", package = "xslt"))
style <- read_xml(system.file("examples/cd_catalog.xsl", package = "xslt"))
html <- xml_xslt(doc, style)
cat(as.character(html))
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].