summaryrefslogtreecommitdiff
path: root/support/make4ht/formats/make4ht-xhtml.lua
diff options
context:
space:
mode:
Diffstat (limited to 'support/make4ht/formats/make4ht-xhtml.lua')
-rw-r--r--support/make4ht/formats/make4ht-xhtml.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/support/make4ht/formats/make4ht-xhtml.lua b/support/make4ht/formats/make4ht-xhtml.lua
new file mode 100644
index 0000000000..4a4ac6689c
--- /dev/null
+++ b/support/make4ht/formats/make4ht-xhtml.lua
@@ -0,0 +1,16 @@
+local M = {}
+
+local mkutils = require "mkutils"
+
+function M.prepare_extensions(extensions)
+ -- return mkutils.add_extensions("+common_domfilters", extensions)
+ return extensions
+end
+
+function M.prepare_parameters(parameters,extensions)
+ parameters = mkutils.extensions_prepare_parameters(extensions,parameters)
+ return parameters
+end
+
+
+return M