<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pandoc/data, branch master</title>
<subtitle>Conversion between markup formats</subtitle>
<id>https://git.pashev.ru/pandoc/atom?h=master</id>
<link rel='self' href='https://git.pashev.ru/pandoc/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/'/>
<updated>2021-12-23T18:09:22Z</updated>
<entry>
<title>JATS template: fix position of contrib affiliations in authoring set</title>
<updated>2021-12-23T18:09:22Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-23T17:45:20Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=e54f6dcd7a6367d6d6408a4a5151b703aef3c533'/>
<id>urn:sha1:e54f6dcd7a6367d6d6408a4a5151b703aef3c533</id>
<content type='text'>
Any `&lt;aff&gt;` element must come before any `&lt;email&gt;` element.
</content>
</entry>
<entry>
<title>JATS templates: fix affiliation tagging in articleauthoring output</title>
<updated>2021-12-23T08:11:54Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-23T07:45:39Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=ddd1b856087b7620d9b314026a76dd53d52d65b6'/>
<id>urn:sha1:ddd1b856087b7620d9b314026a76dd53d52d65b6</id>
<content type='text'>
Affiliations were `xlink`ed even in the articleauthoring tag set, but
`&lt;aff&gt;` are not allowed as children of `contrib-group` elements in that
tag set. Each affiliation must be listed directly in the contrib
element.
</content>
</entry>
<entry>
<title>JATS templates: add support for article subtitles</title>
<updated>2021-12-23T08:11:54Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-22T21:51:53Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=7954070b0141700e17b6bc986d134fed90de7a02'/>
<id>urn:sha1:7954070b0141700e17b6bc986d134fed90de7a02</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add a writer for Markua 0.10 (#7729)</title>
<updated>2021-12-19T20:10:41Z</updated>
<author>
<name>binaarinen</name>
<email>53334195+binaarinen@users.noreply.github.com</email>
</author>
<published>2021-12-19T20:10:41Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=0610f16f7f684b320325b6c0b501725138d10a52'/>
<id>urn:sha1:0610f16f7f684b320325b6c0b501725138d10a52</id>
<content type='text'>
Markua is a markdown variant used by Leanpub.
More information about Markua can be found at https://leanpub.com/markua/read.

Adds a new exported function `writeMarkua` from T.P.Writers.Markdown.
[API change]

Closes #1871.

Co-authored by Tim Wisotzki and Samuel Lemmenmeier.
</content>
</entry>
<entry>
<title>Custom reader: pass list of sources instead of concatenated text</title>
<updated>2021-12-11T16:59:11Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-08T18:06:48Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=83b5b79c0e4f073198b5af11b9e8a0a4471fcd41'/>
<id>urn:sha1:83b5b79c0e4f073198b5af11b9e8a0a4471fcd41</id>
<content type='text'>
The first argument passed to Lua `Reader` functions is no longer a plain
string but a richer data structure. The structure can easily be
converted to a string by applying `tostring`, but is also a list with
elements that contain each the *text* and *name* of each input source as
a property of the respective name.

A small example is added to the custom reader documentation, showcasing
its use in a reader that creates a syntax-highlighted code block for
each source code file passed as input.

Existing readers must be updated.
</content>
</entry>
<entry>
<title>Lua: use package pandoc-lua-marshal (#7719)</title>
<updated>2021-11-28T01:08:01Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-11-28T01:08:01Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=3692a1d1e83703fbf235214f2838cd92683c625c'/>
<id>urn:sha1:3692a1d1e83703fbf235214f2838cd92683c625c</id>
<content type='text'>
The marshaling functions for pandoc's AST are extracted into a separate
package. The package comes with a number of changes:

  - Pandoc's List module was rewritten in C, thereby improving error
    messages.

  - Lists of `Block` and `Inline` elements are marshaled using the new
    list types `Blocks` and `Inlines`, respectively. These types
    currently behave identical to the generic List type, but give better
    error messages. This also opens up the possibility of adding
    element-specific methods to these lists in the future.

  - Elements of type `MetaValue` are no longer pushed as values which
    have `.t` and `.tag` properties. This was already true for
    `MetaString` and `MetaBool` values, which are still marshaled as Lua
    strings and booleans, respectively. Affected values:

      + `MetaBlocks` values are marshaled as a `Blocks` list;

      + `MetaInlines` values are marshaled as a `Inlines` list;

      + `MetaList` values are marshaled as a generic pandoc `List`s.

      + `MetaMap` values are marshaled as plain tables and no longer
        given any metatable.

  - The test suite for marshaled objects and their constructors has
    been extended and improved.

  - A bug in Citation objects, where setting a citation's suffix
    modified it's prefix, has been fixed.</content>
</entry>
<entry>
<title>JATS template: fix incomplete previous commit</title>
<updated>2021-11-11T08:44:49Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-11-11T08:44:49Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=fe113dd5fac4b05d74391bc47122f3d24b88b1dd'/>
<id>urn:sha1:fe113dd5fac4b05d74391bc47122f3d24b88b1dd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>JATS template: fix equal-contrib attribute</title>
<updated>2021-11-11T08:38:07Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-11-11T08:38:07Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=b116022de46cc3969eb91a0035e8da8f9135cbb4'/>
<id>urn:sha1:b116022de46cc3969eb91a0035e8da8f9135cbb4</id>
<content type='text'>
The standard requires the value to be either `yes` or `no`, but is was
set to `true` for authors who contributed equally.
</content>
</entry>
<entry>
<title>Remove some extra stuff from data/creole.lua.</title>
<updated>2021-11-08T16:13:31Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-11-08T16:12:55Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=60233cf07e577f25c3d9e0ffd5fccd9e318d4bae'/>
<id>urn:sha1:60233cf07e577f25c3d9e0ffd5fccd9e318d4bae</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add disableLayout variable in revealjs template</title>
<updated>2021-11-08T15:28:18Z</updated>
<author>
<name>Christophe Dervieux</name>
<email>christophe.dervieux@gmail.com</email>
</author>
<published>2021-11-05T11:39:10Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=19eb5c6d6ae5b660b309d7a9704a3352ffb3cc5f'/>
<id>urn:sha1:19eb5c6d6ae5b660b309d7a9704a3352ffb3cc5f</id>
<content type='text'>
This allows to modify it using Pandoc variable. Default value is correctly set to false by Pandoc.</content>
</entry>
</feed>
