summaryrefslogtreecommitdiff
path: root/support/make4ht/formats/make4ht-tei.lua
diff options
context:
space:
mode:
Diffstat (limited to 'support/make4ht/formats/make4ht-tei.lua')
-rw-r--r--support/make4ht/formats/make4ht-tei.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/support/make4ht/formats/make4ht-tei.lua b/support/make4ht/formats/make4ht-tei.lua
new file mode 100644
index 0000000000..f81953a8b3
--- /dev/null
+++ b/support/make4ht/formats/make4ht-tei.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 ..",tei"
+ settings = mkutils.extensions_prepare_parameters(extensions, settings)
+ return settings
+end
+
+function M.prepare_extensions(extensions)
+ return extensions
+end
+
+return M