We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89489da commit d6c8c6bCopy full SHA for d6c8c6b
math2svg/math2svg.lua
@@ -85,6 +85,10 @@ local _cache = {}
85
_cache.DisplayMath = {}
86
_cache.InlineMath = {}
87
88
+local tags = {}
89
+tags.DisplayMath = {'<span class="math display">', '</span>'}
90
+tags.InlineMath = {'<span class="math inline">', '</span>'}
91
+
92
93
function Meta(meta)
94
@@ -106,10 +110,6 @@ function Math(elem)
106
110
107
111
local svg = nil
108
112
109
- local tags = {}
- tags.DisplayMath = {'<span class="math display">', '</span>'}
- tags.InlineMath = {'<span class="math inline">', '</span>'}
-
113
local argumentlist = {
114
'--speech', speech,
115
'--linebreaks', linebreaks,
0 commit comments