diff options
| author | Jonas Smedegaard <dr@jones.dk> | 2025-05-22 22:54:07 +0200 |
|---|---|---|
| committer | Jonas Smedegaard <dr@jones.dk> | 2025-05-22 22:54:07 +0200 |
| commit | f4ae40195ebd1fcfe0568236ce1ba00dbae0f3c1 (patch) | |
| tree | 23434557299ee81b86010352b548a6dcd7308641 /workflow/pandoc-filter-tool.cwl | |
| parent | b1f8ffecf0785fa6762ab128047714ac64d8a0af (diff) | |
add workflow diagrams
Diffstat (limited to 'workflow/pandoc-filter-tool.cwl')
| -rwxr-xr-x | workflow/pandoc-filter-tool.cwl | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/workflow/pandoc-filter-tool.cwl b/workflow/pandoc-filter-tool.cwl new file mode 100755 index 0000000..a433081 --- /dev/null +++ b/workflow/pandoc-filter-tool.cwl @@ -0,0 +1,37 @@ +#!/usr/bin/env cwl-runner + +cwlVersion: v1.0 +class: CommandLineTool +label: Pandoc filter +doc: Transforms Pandoc AST +$namespaces: + dc: http://purl.org/dc/elements/1.1/ + license: https://spdx.org/licenses/ + +inputs: + input_file: + type: File + inputBinding: + position: 1 + +outputs: + html_with_rdfa: + type: File + outputBinding: + glob: output + latex_with_xmp: + type: File + outputBinding: + glob: output + markdown: + type: File + outputBinding: + glob: output +stdout: output + +baseCommand: pandoc +arguments: +- --output=output.${output_format} +dc:license: license:GPL-3.0-or-later +dc:rights: Copyright 2025, Jonas Smedegaard <dr@jones.dk> +stdin: $(inputs.file1.path) |
