780a65f8a8
No more SingleQuoted, DoubleQuoted, InlineMath, DisplayMath. This makes everything uniform and predictable, though it does open up a difference btw lua filters and custom writers.
10 lines
170 B
Lua
10 lines
170 B
Lua
return {
|
|
{
|
|
Quoted = function (elem)
|
|
if elem.quotetype == "SingleQuote" then
|
|
elem.quotetype = "DoubleQuote"
|
|
end
|
|
return elem
|
|
end,
|
|
}
|
|
}
|