data/pandoc.lua: fix typos in documentation

This commit is contained in:
Albert Krewinkel 2017-08-31 13:22:27 +02:00
parent bc47cfd40e
commit 1a4658c573
No known key found for this signature in database
GPG key ID: 388DC0B21F631124

View file

@ -135,7 +135,7 @@ end
-- @section document -- @section document
--- A complete pandoc document --- A complete pandoc document
-- @function Panoc -- @function Pandoc
-- @tparam {Block,...} blocks document content -- @tparam {Block,...} blocks document content
-- @tparam[opt] Meta meta document meta data -- @tparam[opt] Meta meta document meta data
function M.Pandoc(blocks, meta) function M.Pandoc(blocks, meta)
@ -772,7 +772,7 @@ M.UpperAlpha = "UpperAlpha"
-- `--from` command line option. -- `--from` command line option.
-- @tparam string markup the markup to be parsed -- @tparam string markup the markup to be parsed
-- @tparam[opt] string format format specification, defaults to "markdown". -- @tparam[opt] string format format specification, defaults to "markdown".
-- @return Doc pandoc document -- @treturn Pandoc pandoc document
-- @usage -- @usage
-- local org_markup = "/emphasis/" -- Input to be read -- local org_markup = "/emphasis/" -- Input to be read
-- local document = pandoc.read(org_markup, "org") -- local document = pandoc.read(org_markup, "org")