aboutsummaryrefslogtreecommitdiff
path: root/test/lua/implicit-doc-filter.lua
AgeCommit message (Collapse)AuthorFilesLines
2017-06-29data/pandoc.lua: regularize constructors.John MacFarlane1-1/+1
We now use Pandoc instead of Doc (though Doc remains a deprecated Synonym), and we deprecate DoubleQuoted, SingleQuoted, InlineMath, and DisplayMath.
2017-04-30Lua filter: fall-back to global filters when none is returnedAlbert Krewinkel1-0/+6
The implicitly defined global filter (i.e. all element filtering functions defined in the global lua environment) is used if no filter is returned from a lua script. This allows to just write top-level functions in order to define a lua filter. E.g function Emph(elem) return pandoc.Strong(elem.content) end