Skip to content

AtomGraph/saxon-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

saxon-docker

Dockerized Saxon-HE (XSLT 3.0 processor)

Usage

docker run --rm -v "$PWD/xml/source.xml":"/xml/source.xml" -v "$PWD/xsl/stylesheet.xsl":"/xsl/stylesheet.xsl" atomgraph/saxon -s:/xml/source.xml -xsl:/xsl/stylesheet.xsl param=value

Note that we use $PWD in order to make host filepath absolute, as required by Docker's -v (volume) option.

Documentation

Saxon's Running XSLT from the Command Line