summaryrefslogtreecommitdiff
path: root/support/make4ht/formats/make4ht-html5.lua
blob: a70309fa7ae770d4b5b347ac2c0366b3b95154d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
local M = {}

local mkutils = require "mkutils"

function M.prepare_extensions(extensions)
  return mkutils.add_extensions("+common_domfilters", extensions)
end

function M.prepare_parameters(parameters,extensions)
  parameters.tex4ht_sty_par  = parameters.tex4ht_sty_par .. ",html5"
  parameters = mkutils.extensions_prepare_parameters(extensions,parameters)
  return parameters
end


return M