<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pandoc/test/lua, branch master</title>
<subtitle>Conversion between markup formats</subtitle>
<id>http://git.pashev.ru/pandoc/atom?h=master</id>
<link rel='self' href='http://git.pashev.ru/pandoc/atom?h=master'/>
<link rel='alternate' type='text/html' href='http://git.pashev.ru/pandoc/'/>
<updated>2021-12-25T20:20:18Z</updated>
<entry>
<title>Lua: improve handling of empty caption, body by `from_simple_table`</title>
<updated>2021-12-25T20:20:18Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-25T19:47:29Z</published>
<link rel='alternate' type='text/html' href='http://git.pashev.ru/pandoc/commit/?id=fbd2c8e376eea5eccc0b799f8e48d10c7ab8b6d9'/>
<id>urn:sha1:fbd2c8e376eea5eccc0b799f8e48d10c7ab8b6d9</id>
<content type='text'>
Create truly empty table caption and body when these are empty in the
simple table.

Fixes: #7776
</content>
</entry>
<entry>
<title>Lua: simplify code of pandoc.utils.stringify</title>
<updated>2021-12-21T20:50:13Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-21T20:50:13Z</published>
<link rel='alternate' type='text/html' href='http://git.pashev.ru/pandoc/commit/?id=0bdf37315766eb4b785002ffaf38cdb724628e7a'/>
<id>urn:sha1:0bdf37315766eb4b785002ffaf38cdb724628e7a</id>
<content type='text'>
Minor behavior change: plain strings nested in tables are now included
in the result string.
</content>
</entry>
<entry>
<title>Lua tests: add more tests for `pandoc.utils.stringify`.</title>
<updated>2021-12-21T20:25:16Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-21T20:25:16Z</published>
<link rel='alternate' type='text/html' href='http://git.pashev.ru/pandoc/commit/?id=edb04a78dba3490dc28ef68d5133b0220a0426fa'/>
<id>urn:sha1:edb04a78dba3490dc28ef68d5133b0220a0426fa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Lua: add tests for pandoc.utils.equals</title>
<updated>2021-12-21T18:00:21Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-21T16:12:56Z</published>
<link rel='alternate' type='text/html' href='http://git.pashev.ru/pandoc/commit/?id=1c389bf6b6236cefcadac3c2eefe62eb6c884863'/>
<id>urn:sha1:1c389bf6b6236cefcadac3c2eefe62eb6c884863</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Lua: add new library function `pandoc.utils.type`.</title>
<updated>2021-12-21T17:24:21Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-21T08:40:23Z</published>
<link rel='alternate' type='text/html' href='http://git.pashev.ru/pandoc/commit/?id=d7cab5198269fbbdbc40f54a2ad7aeb83fee619f'/>
<id>urn:sha1:d7cab5198269fbbdbc40f54a2ad7aeb83fee619f</id>
<content type='text'>
The function behaves like the default `type` function from Lua's
standard library, but is aware of pandoc userdata types. A typical
use-case would be to determine the type of a metadata value.
</content>
</entry>
<entry>
<title>Lua: use more natural representation for Reference values</title>
<updated>2021-12-20T08:41:03Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-20T08:28:38Z</published>
<link rel='alternate' type='text/html' href='http://git.pashev.ru/pandoc/commit/?id=cd2bffee1e4c0ca9c999bd37f81732664f9f107a'/>
<id>urn:sha1:cd2bffee1e4c0ca9c999bd37f81732664f9f107a</id>
<content type='text'>
Omit `false` boolean values, push integers as numbers.
</content>
</entry>
<entry>
<title>Lua: fixup, should have been part of previous commit</title>
<updated>2021-12-19T13:31:52Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-19T13:31:52Z</published>
<link rel='alternate' type='text/html' href='http://git.pashev.ru/pandoc/commit/?id=dc3dcc2ccd3435ca88cf1eaeea05f62806f066d6'/>
<id>urn:sha1:dc3dcc2ccd3435ca88cf1eaeea05f62806f066d6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Lua: update to latest pandoc-lua-marshal (0.1.1)</title>
<updated>2021-12-09T17:22:29Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-06T15:55:19Z</published>
<link rel='alternate' type='text/html' href='http://git.pashev.ru/pandoc/commit/?id=fa643ba6d78fd97f0a779840dca32bfea3b296f8'/>
<id>urn:sha1:fa643ba6d78fd97f0a779840dca32bfea3b296f8</id>
<content type='text'>
- `walk` methods are added to `Block` and `Inline` values; the methods
  are similar to `pandoc.utils.walk_block` and
  `pandoc.utils.walk_inline`, but apply to filter also to the element
  itself, and therefore return a list of element instead of a single
  element.

- Functions of name `Doc` are no longer accepted as alternatives for
  `Pandoc` filter functions. This functionality was undocumented.
</content>
</entry>
<entry>
<title>Lua: remove `pandoc.utils.text` (#7720)</title>
<updated>2021-11-29T17:12:30Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-11-29T17:12:30Z</published>
<link rel='alternate' type='text/html' href='http://git.pashev.ru/pandoc/commit/?id=fa838deefc6badc62b9ca4d93aba55e9fbd747ec'/>
<id>urn:sha1:fa838deefc6badc62b9ca4d93aba55e9fbd747ec</id>
<content type='text'>
The new `pandoc.Inlines` function behaves identical on string input, but
allows other Inlines-like arguments as well.

The `pandoc.utils.text` function could be written as

    function pandoc.utils.text (x)
      assert(type(x) == 'string')
      return pandoc.Inlines(x)
    end</content>
</entry>
<entry>
<title>Lua: add constructors `pandoc.Blocks` and `pandoc.Inlines`</title>
<updated>2021-11-28T15:02:42Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-11-28T14:07:30Z</published>
<link rel='alternate' type='text/html' href='http://git.pashev.ru/pandoc/commit/?id=b9222e5cb1d8d1d3217f65c6a91886b897956dde'/>
<id>urn:sha1:b9222e5cb1d8d1d3217f65c6a91886b897956dde</id>
<content type='text'>
The functions convert their argument into a list of Block and Inline
values, respectively.
</content>
</entry>
</feed>
