summaryrefslogtreecommitdiff
path: root/data/sample.lua
Commit message (Collapse)AuthorAge
* data/sample.lua: use `next` instead of for loopAlbert Krewinkel2017-12-27
| | | | | | Each definition list item contains just a single key and the associated value. Using `next` to get the key/value pair is more idiomatic than iterating over the single-element table.
* Removed extra comment.John MacFarlane2017-12-27
|
* Revert "data/sample.lua: Fixed problem with definition lists."John MacFarlane2017-12-27
| | | | | This reverts commit 0e3736422ee97a5cfedc255705f566a319f954f9 in favor of @tarleb's fix.
* data/sample.lua: fixed problem with tables.John MacFarlane2017-12-27
| | | | Closes #4202.
* data/sample.lua: Fixed problem with definition lists.John MacFarlane2017-12-27
|
* Fix sample.lua barfing on Raw data (#3358)bumper3142017-01-18
| | | | | | * Fix for "pandoc: user error (Incorrect result type (string expected, got nil))." when the source format contains Raw data. * Update sample.lua
* Handle line blocks in sample.lua custom lua writer.John MacFarlane2016-10-23
|
* Implement RawInline and RawBlock in sample lua custom writer.John MacFarlane2016-06-20
| | | | Closes #2985.
* Custom writer: Pass attributes parameter to CaptionedImage.John MacFarlane2016-02-05
| | | | Closes #2697.
* Implemented SoftBreak and new `--wrap` option.John MacFarlane2015-12-11
| | | | | | | | | | | | | | | | Added threefold wrapping option. * Command line option: deprecated `--no-wrap`, added `--wrap=[auto|none|preserve]` * Added WrapOption, exported from Text.Pandoc.Options * Changed type of writerWrapText in WriterOptions from Bool to WrapOption. * Modified Text.Pandoc.Shared functions for SoftBreak. * Supported SoftBreak in writers. * Updated tests. * Updated README. Closes #1701.
* sample.lua - define CaptionedImage, add newline at end.John MacFarlane2015-09-15
| | | | Cloess #2393.
* Custom writers now work with `--template`.John MacFarlane2014-07-16
| | | | Removed HTML header scaffolding from data/sample.lua.
* Made Citation information available in lua custom writer.John MacFarlane2014-07-16
|
* Added Cite function to sample.lua.John MacFarlane2013-12-13
|
* Preliminary support for new Div and Span elements in writers.John MacFarlane2013-08-08
| | | | | Currently these are "transparent" containers, except in HTML, where they produce div and span elements with attributes.
* Updated sample.lua for new metadata.John MacFarlane2013-07-14
|
* Custom writer: Pass full metadata, not just tit/auth/date.John MacFarlane2013-06-27
|
* Added `Text.Pandoc.Writers.Custom`, `--print-custom-lua-writer`.John MacFarlane2013-04-14
pandoc -t data/sample.lua will load the script sample.lua and use it as a custom writer. data/sample.lua is provided as an example. Added `--print-custom-lua-writer` option to print the sample script.