Files
pandoc/data
Albert Krewinkel b70079fbfa data/pandoc.lua: split type and behavior tables
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'
2018-01-06 23:25:08 +01:00
..
2017-12-26 22:02:49 -08:00
2015-07-13 22:46:49 -07:00
2017-08-12 13:19:50 -07:00
2017-11-11 16:23:41 -08:00
2017-06-19 22:15:12 +02:00