项目作者: ropensci

项目描述 :
Extension of xml2 package for xsl transformations
高级语言: R
项目地址: git://github.com/ropensci/xslt.git
创建时间: 2016-12-13T12:58:33Z
项目社区:https://github.com/ropensci/xslt

开源协议:

下载


xslt

XSLT 1.0 Transformations

Project Status: Active – The project has reached a stable, usable state and is being actively developed.
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:

  1. doc <- read_xml(system.file("examples/cd_catalog.xml", package = "xslt"))
  2. style <- read_xml(system.file("examples/cd_catalog.xsl", package = "xslt"))
  3. html <- xml_xslt(doc, style)
  4. cat(as.character(html))