aboutsummaryrefslogtreecommitdiff
path: root/test/lua/math.lua
blob: 34307dd9e3bc54db1279a3b0b733d3217643f595 (plain)
1
2
3
4
5
6
7
8
9
10
return {
  {
    Math = function (elem)
      if elem.mathtype == "DisplayMath" then
        elem.mathtype = "InlineMath"
      end
      return elem
    end,
  }
}