summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/arara/rules/arara-rule-bibtex8.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/arara/rules/arara-rule-bibtex8.yaml')
-rw-r--r--Master/texmf-dist/scripts/arara/rules/arara-rule-bibtex8.yaml27
1 files changed, 27 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/arara/rules/arara-rule-bibtex8.yaml b/Master/texmf-dist/scripts/arara/rules/arara-rule-bibtex8.yaml
new file mode 100644
index 00000000000..2526c82b5a4
--- /dev/null
+++ b/Master/texmf-dist/scripts/arara/rules/arara-rule-bibtex8.yaml
@@ -0,0 +1,27 @@
+!config
+# Arara, the cool TeX automation tool
+# Copyright (c) 2020, Island of TeX
+# All rights reserved.
+#
+# This rule is part of arara.
+identifier: bibtex8
+name: BibTeX8
+authors:
+- Island of TeX
+commands:
+- name: An 8-bit implementation of BibTeX 0.99 with a very large capacity
+ command: >
+ @{
+ return getCommand('bibtex8', options, getBasename(reference.getName()));
+ }
+arguments:
+- identifier: options
+ flag: >
+ @{
+ if (isList(parameters.options)) {
+ return parameters.options;
+ }
+ else {
+ throwError('I was expecting a list of options.');
+ }
+ }