pandoc/test/lua
Albert Krewinkel e7eb21ecca
Lua module: add readers submodule
Plain text readers are exposed to lua scripts via the `pandoc.reader`
submodule, which is further subdivided by format.  Converting e.g. a
markdown string into a pandoc document is possible from within lua:

    doc = pandoc.reader.markdown.read_doc("Hello, World!")

A `read_block` convenience function is provided for all formats,
although it will still parse the whole string but return only the first
block as the result.

Custom reader options are not supported yet, default options are used
for all parsing operations.
2017-04-02 17:28:07 +02:00
..
hello-world-doc.lua Lua filters () 2017-03-20 15:17:03 +01:00
markdown-reader.lua Lua module: add readers submodule 2017-04-02 17:28:07 +02:00
plain-to-para.lua Lua filters () 2017-03-20 15:17:03 +01:00
strmacro.lua Lua filters () 2017-03-20 15:17:03 +01:00