summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/make4ht/formats/make4ht-jats.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/make4ht/formats/make4ht-jats.lua')
-rw-r--r--Master/texmf-dist/scripts/make4ht/formats/make4ht-jats.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/make4ht/formats/make4ht-jats.lua b/Master/texmf-dist/scripts/make4ht/formats/make4ht-jats.lua
new file mode 100644
index 00000000000..13bcd86d41e
--- /dev/null
+++ b/Master/texmf-dist/scripts/make4ht/formats/make4ht-jats.lua
@@ -0,0 +1,14 @@
+local M = {}
+local xtpipeslib = require "make4ht-xtpipes"
+
+function M.prepare_parameters(settings, extensions)
+ settings.tex4ht_sty_par = settings.tex4ht_sty_par ..",jats"
+ settings = mkutils.extensions_prepare_parameters(extensions, settings)
+ return settings
+end
+
+function M.prepare_extensions(extensions)
+ return extensions
+end
+
+return M