summaryrefslogtreecommitdiff
path: root/data
Commit message (Collapse)AuthorAge
* hlint code improvements.John MacFarlane2018-01-19
|
* Merge pull request #4221 from phikal/masterJohn MacFarlane2018-01-19
|\ | | | | Ms writer: Added papersize variable
| * Ms writer: Added papersize variablePhilip K2018-01-03
| |
* | ConTeXt writer: Use xtables instead of Tables (#4223)Henri Menke2018-01-15
| | | | | | | | | | | | - Default to xtables for context output. - Added `ntb` extension (affecting context writer only) to use Natural Tables instead. - Added `Ext_ntb` constructor to `Extension` (API change).
* | data/pandoc.lua: add attr, listAttributes accessorsAlbert Krewinkel2018-01-13
| | | | | | | | | | | | | | Elements with attributes got an additional `attr` accessor. Attributes were accessible only via the `identifier`, `classes`, and `attributes`, which was in conflict with the documentation, which indirectly states that such elements have the an `attr` property.
* | data/pandoc.lua: accept single block as singleton listAlbert Krewinkel2018-01-13
| | | | | | | | | | | | Every constructor which accepts a list of blocks now also accepts a single block element for convenience. Furthermore, strings are accepted as shorthand for `{pandoc.Str "text"}` in constructors.
* | data/pandoc.lua: accept singleton inline as a listAlbert Krewinkel2018-01-13
| | | | | | | | | | Every constructor which accepts a list of inlines now also accepts a single inline element for convenience.
* | data/pandoc.lua: drop _VERSIONAlbert Krewinkel2018-01-13
| | | | | | | | | | Having a _VERSION became superfluous, as this module is closely tied to the pandoc version, which is available via PANDOC_VERSION.
* | data/pandoc.lua: fix access to Attr componentsAlbert Krewinkel2018-01-09
| | | | | | | | | | | | Accessing an Attr value (e.g., ` Attr().classes`) was broken; the more common case of accessing it via an Inline or Block element was unaffected by this.
* | data/pandoc.lua: slightly de-complicate accessor codeAlbert Krewinkel2018-01-09
| | | | | | | | Change: minor
* | data/pandoc.lua: cleanup code, remove cruftAlbert Krewinkel2018-01-08
| |
* | data/pandoc.lua: fix docstringsAlbert Krewinkel2018-01-07
| | | | | | | | Change: minor
* | data/pandoc.lua: make Attr an AstElementAlbert Krewinkel2018-01-07
| | | | | | | | Attr is an AST element, which is now reflected in the type hierarchy.
* | data/pandoc.lua: drop 'pandoc-api-version' from Pandoc objectsAlbert Krewinkel2018-01-07
| | | | | | | | | | | | This attribute was out-of-sync with the actual version as is mostly irrelevant in the context Lua filters and custom writers. Use the global `PANDOC_API_VERSION` instead.
* | data/pandoc.lua: make all types subtypes of AstElementAlbert Krewinkel2018-01-07
| | | | | | | | | | | | | | | | *Pandoc*, *Meta*, and *Citation* were just plain functions and did not set a metatable on the returned value, which made it difficult to amend objects of these types with new behavior. They are now subtypes of AstElement, meaning that all their objects can gain new features when a method is added to the behavior object (e.g., `pandoc.Pandoc.behavior`).
* | data/pandoc.lua: split type and behavior tablesAlbert Krewinkel2018-01-06
| | | | | | | | | | | | | | | | | | | | | | | | | | Clearly distinguish between a type and the behavioral properties of an instance of that type. The behavior of a type (and all its subtypes) can now be amended by adding methods to that types `behavior` object, without exposing the type objects internals. E.g.: pandoc.Inline.behavior.frob = function () print'42' end local str = pandoc.Str'hello' str.frob() -- outputs '42'
* | data/pandoc.lua: rename Element to AstElementAlbert Krewinkel2018-01-06
| | | | | | | | | | | | This avoids confusion with the Element type from Text.Pandoc.Shared. Change: minor
* | data/pandoc.lua: remove dead codeAlbert Krewinkel2018-01-06
| | | | | | | | | | | | A `Element:new` method was a left-over was never called. Change: minor
* | data/pandoc.lua: fix Element inheritanceAlbert Krewinkel2018-01-06
| | | | | | | | | | | | | | | | Extending all elements of a given type (e.g., all inline elements) was difficult, as the table used to lookup unknown methods would be reset every time a new element of that type was created, preventing recursive property lookup. This is was changed in that all methods and attributes of supertypes are now available to their subtypes.
* | Update copyright notices to include 2018Albert Krewinkel2018-01-05
| |
* | data/pandoc.lua: fix attribute names of CitationAlbert Krewinkel2018-01-05
|/ | | | | | | | The fields were named like the Haskell fields, not like the documented, shorter version. The names are changed to match the documentation and Citations are given a shared metatable to enable simple extensibility. Fixes: #4222
* data/pandoc.lua: drop function pandoc.global_filterAlbert Krewinkel2017-12-29
| | | | | | | | | | The function `global_filter` was used internally to get the implicitly defined global filter. It was of little value to end-users, but caused unnecessary code duplication in pandoc. The function has hence been dropped. Internally, the global filter is now received by interpreting the global table as lua filter. This is a Lua API change.
* data/pandoc.lua: fix documentation for global_filterAlbert Krewinkel2017-12-29
|
* Fixed some doc comments in data/pandoc.lua.John MacFarlane2017-12-28
|
* 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
|
* Updated reference.docx.John MacFarlane2017-12-26
| | | | | | | | | | Instead of just "Hello, world", the document now contains exemplars of most of the styles that have an effect on pandoc documents. This makes it easier to see the effect of style changes. Closes #4175.
* HTML writer: Use br elements in line blocks...John MacFarlane2017-12-26
| | | | | | | | instead of relying on CSS. Closes #4162. HTML-based templates have had the custom CSS for div.line-block removed. Those maintaining custom templates will want to remove this too. We still enclose line blocks in a div with class line-block.
* data/init.lua: load pandoc.utils by defaultAlbert Krewinkel2017-12-23
|
* Lua modules: added pandoc.utils moduleAlbert Krewinkel2017-12-21
| | | | | A new module `pandoc.utils` has been created. It holds utility functions like `sha1`, which was moved from the main `pandoc` module.
* Removed default.theme data file.John MacFarlane2017-12-21
| | | | | It is no longer needed now that we have `--print-highlight-style`. See #4096.
* Lua modules: turn pipe, read into full Haskell functionsAlbert Krewinkel2017-12-20
| | | | | | The `pipe` and `read` utility functions are converted from hybrid lua/haskell functions into full Haskell functions. This avoids the need for intermediate `_pipe`/`_read` helper functions, which have dropped.
* pandoc.lua: re-add missing MetaMap functionAlbert Krewinkel2017-12-19
| | | | | This was a bug introduced in version 2.0.4 (commit 3f1f9536d4817bbdd797c01050a887fe4cdf347c).
* Update latex template to work with recent versions of beamer.John MacFarlane2017-12-13
| | | | | | | The old template produced numbered sections with some recent versions of beamer. Thanks to Thomas Hodgson.
* Added support for LaTeX pagestyle variable (#4135)Thomas Hodgson2017-12-11
| | | | | | | | * Add pagestyle support * Add pagestyle option to MANUAL.txt * Moved mention of pagestyle to the section on variables
* Add default pptx data for Powerpoint writer.Jesse Rosenthal2017-12-11
|
* Lua filters: use script to initialize the interpreterAlbert Krewinkel2017-12-06
| | | | | | | The file `init.lua` is used to initialize the Lua interpreter which is used in Lua filters. This gives users the option to require libraries which they want to use in all of their filters, and to extend default modules.
* Lua filters: refactor lua module handlingAlbert Krewinkel2017-12-02
| | | | | | | The integration with Lua's package/module system is improved: A pandoc-specific package searcher is prepended to the searchers in `package.searchers`. The modules `pandoc` and `pandoc.mediabag` can now be loaded via `require`.
* reveal.js template: add title-slide identifier to title slide.John MacFarlane2017-12-04
| | | | | | This allows it to be styled more easily. Closes #4120.
* Include default CSS for 'underline' class in HTML-based templates.John MacFarlane2017-12-03
|
* revealjs template: added a necessary escape.John MacFarlane2017-12-01
|
* reveal.js template: include tex2jax configuration.John MacFarlane2017-12-01
| | | | | | This ensures that we don't use $..$ delimiters, which gives bad results when $ is used as a currency sign. This depends on the current dev version of reveal.js.
* pandoc.lua: set metatable on List MetaValuesAlbert Krewinkel2017-12-01
| | | | | | | The `List` metatable is assigned to the tables which get passed to the constructors `MetaBlocks`, `MetaInline`, and `MetaList`. This enables the use of the resulting objects as lists. This is part of the changes discussed in #4081.
* Lua/StackInstances: push Pandoc and Meta via constructorAlbert Krewinkel2017-12-01
| | | | | | | Pandoc and Meta elements are now pushed by calling the respective constructor functions of the pandoc Lua module. This makes serialization consistent with the way blocks and inlines are pushed to lua and allows to use List methods with the `blocks` value.
* List.lua: add missing fixes as discussed in #4099Albert Krewinkel2017-12-01
| | | | The changes were missing due to an error while using git.
* List.lua: add _VERSION to module, drop unused varAlbert Krewinkel2017-11-29
|
* Add basic lua List module (#4099)Albert Krewinkel2017-11-28
| | | | | | | | | | | | | | | | | | The List module is automatically loaded, but not assigned to a global variable. It can be included in filters by calling `List = require 'List'`. Lists of blocks, lists of inlines, and lists of classes are now given `List` as a metatable, making working with them more convenient. E.g., it is now possible to concatenate lists of inlines using Lua's concatenation operator `..` (requires at least one of the operants to have `List` as a metatable): function Emph (emph) local s = {pandoc.Space(), pandoc.Str 'emphasized'} return pandoc.Span(emph.content .. s) end Closes: #4081