mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-29 01:41:20 +08:00
0f658eb46c
We now use Pandoc instead of Doc (though Doc remains a deprecated Synonym), and we deprecate DoubleQuoted, SingleQuoted, InlineMath, and DisplayMath.
7 lines
195 B
Lua
7 lines
195 B
Lua
function Doc (doc)
|
|
local meta = {}
|
|
local hello = { pandoc.Str "Hello,", pandoc.Space(), pandoc.Str "World!" }
|
|
local blocks = { pandoc.Para(hello) }
|
|
return pandoc.Pandoc(blocks, meta)
|
|
end
|