Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/AtomGraph/saxon-docker

Dockerized Saxon-HE (XSLT 3.0 processor)
https://github.com/AtomGraph/saxon-docker

docker-image saxon xml xslt xslt-3

Last synced: 1 day ago
JSON representation

Dockerized Saxon-HE (XSLT 3.0 processor)

Awesome Lists containing this project

README

        

# 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](https://docs.docker.com/engine/reference/run/#volume-shared-filesystems).

## Documentation

Saxon's [Running XSLT from the Command Line](https://www.saxonica.com/documentation/index.html#!using-xsl/commandline)