Created
October 19, 2021 13:25
-
-
Save bdarcus/167c4551d5b2b4845704617c0fb6d68a to your computer and use it in GitHub Desktop.
a simple wrapper script to validate CSL files using the very fast RNV XML parser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# a simple wrapper script to validate CSL files using the very fast RNV XML parser | |
SCHEMA="~/Code/csl/schema/schemas/styles/csl.rnc" | |
STYLE=$1 | |
rnv $SCHEMA $STYLE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment