aboutsummaryrefslogtreecommitdiff
path: root/test/lua/markdown-reader.lua
AgeCommit message (Collapse)AuthorFilesLines
2017-04-26Lua module: provide simple `read` format parserAlbert Krewinkel1-1/+2
A single `read` function parsing pandoc-supported formats is added to the module. This is simpler and more convenient than the previous method of exposing all reader functions individually.
2017-04-15Lua filter: revert to non-destructuring filtersAlbert Krewinkel1-4/+4
We want to provide an interface familiar to users of other filtering libraries.
2017-04-14Lua filter: use destructured functions for block filtersAlbert Krewinkel1-2/+1
Filtering functions take element components as arguments instead of the whole block elements. This resembles the way elements are handled in custom writers.
2017-04-02Lua module: add readers submoduleAlbert Krewinkel1-0/+12
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.