summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/make4ht/extensions/odttemplate.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/make4ht/extensions/odttemplate.lua')
-rw-r--r--Master/texmf-dist/scripts/make4ht/extensions/odttemplate.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/Master/texmf-dist/scripts/make4ht/extensions/odttemplate.lua b/Master/texmf-dist/scripts/make4ht/extensions/odttemplate.lua
deleted file mode 100644
index 3b0af2a6999..00000000000
--- a/Master/texmf-dist/scripts/make4ht/extensions/odttemplate.lua
+++ /dev/null
@@ -1,16 +0,0 @@
-local M = {}
-
-local filter = require "make4ht-filter"
-
--- this extension only works for the ODT format
-M.test = function(format)
- return format=="odt"
-end
-
-M.modify_build = function(make)
- local process = filter {"odttemplate"}
- make:match("4oy$", process)
- return make
-end
-
-return M