pandoc/data
Albert Krewinkel acbea6b8c6
Lua filters: add SimpleTable for backwards compatibility (#6575)
A new type `SimpleTable` is made available to Lua filters. It is
similar to the `Table` type in pandoc versions before 2.10;
conversion functions from and to the new Table type are provided.

Old filters using tables now require minimal changes and can use,
e.g.,

    if PANDOC_VERSION > {2,10,1} then
      pandoc.Table = pandoc.SimpleTable
    end

and

    function Table (tbl)
      tbl = pandoc.utils.to_simple_table(tbl)
      …
      return pandoc.utils.from_simple_table(tbl)
    end

to work with the current pandoc version.
2020-09-20 15:48:31 -07:00
..
docx Docx writer: support --number-sections. 2020-07-22 11:53:31 -07:00
dzslides Updated dzslides template. 2015-07-13 22:46:49 -07:00
odt ODT: clean up styles. 2020-05-16 14:38:26 -07:00
pptx PowerPoint writer: expand builtin reference doc to model all layouts 2019-04-05 08:50:39 -04:00
templates Add CSS to default HTML template (#6601) 2020-09-19 16:13:50 -07:00
translations Translations: reorder alphabetically (#5335) 2019-02-27 11:11:50 -07:00
abbreviations Additional abbreviations 2018-11-20 15:42:24 -05:00
bash_completion.tpl Add tectonic as an option for --pdf-engine. (#5346) 2019-03-07 10:16:40 -07:00
epub.css epub.css: Fix cover page selectors and add note explaining their use. (#6649) 2020-08-30 15:12:12 -07:00
init.lua Lua filters: load module pandoc before calling init.lua (#5287) 2019-02-09 13:56:49 -08:00
jats.csl Update data/jats.csl to avoid commas between editor name-part elements. (#5629) 2019-07-05 13:07:51 +02:00
make-reference-files.hs make-reference-files: use proper path separators for Windows. 2015-05-28 09:59:08 -07:00
pandoc.List.lua Lua: add methods insert, remove, and sort to pandoc.List 2020-01-11 21:31:20 +01:00
pandoc.lua Lua filters: add SimpleTable for backwards compatibility (#6575) 2020-09-20 15:48:31 -07:00
sample.lua sample.lua - fix error message. 2020-02-12 20:34:20 -08:00
vimwiki.css Added Vimwiki reader (#3705). 2017-06-19 22:15:12 +02:00