<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pandoc/src/Text/Pandoc/Readers, 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>2022-01-16T17:49:37Z</updated>
<entry>
<title>LaTeX: parse thebibliography</title>
<updated>2022-01-16T17:49:37Z</updated>
<author>
<name>Igor Pashev</name>
<email>pashev.igor@gmail.com</email>
</author>
<published>2022-01-13T17:11:50Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=f62f8b7ef2f1c2357fbd41f5226fe433e632e042'/>
<id>urn:sha1:f62f8b7ef2f1c2357fbd41f5226fe433e632e042</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge https://github.com/jgm/pandoc</title>
<updated>2021-12-29T13:00:59Z</updated>
<author>
<name>Igor Pashev</name>
<email>pashev.igor@gmail.com</email>
</author>
<published>2021-12-29T13:00:59Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=b4361712899fd0183fea5513180cb383979616de'/>
<id>urn:sha1:b4361712899fd0183fea5513180cb383979616de</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use `splitDirectories` istead of `splitPath`.</title>
<updated>2021-12-29T00:31:54Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-29T00:31:54Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=d960282b105a6469c760b4308a3b81da723b7256'/>
<id>urn:sha1:d960282b105a6469c760b4308a3b81da723b7256</id>
<content type='text'>
We were using `splitPath` in two places in the code
where `splitDirectories` should have been used.

This led to a test for `..` in paths in `extractMedia`
failing, so that images with `..` in the path name
could be extracted outside the directory specified
by `extractMedia`.

It also led a test for `media` in resource paths to fail
in the docx reader.
</content>
</entry>
<entry>
<title>Org reader: parse official org-cite citations.</title>
<updated>2021-12-14T19:34:32Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-14T18:40:24Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=394fa9d0727a30f540d9c36ccfa68fc942cad587'/>
<id>urn:sha1:394fa9d0727a30f540d9c36ccfa68fc942cad587</id>
<content type='text'>
We also support the older org-ref style as a fallback.
We no longer support the "markdown-style" citations.

See #7329.
</content>
</entry>
<entry>
<title>Org reader: remove support for "Berkeley style" citations.</title>
<updated>2021-12-14T17:20:26Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-14T17:20:09Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=5817e864918e5d03b6402afac0ff8c748a2ac2f6'/>
<id>urn:sha1:5817e864918e5d03b6402afac0ff8c748a2ac2f6</id>
<content type='text'>
See #7329.
</content>
</entry>
<entry>
<title>Markdown reader:  fix parsing of "bare locators"...</title>
<updated>2021-12-13T20:11:58Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-13T20:08:58Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=2015c9070d1389b407711cfd699e529fe14bffcd'/>
<id>urn:sha1:2015c9070d1389b407711cfd699e529fe14bffcd</id>
<content type='text'>
...after author-in-text citations.

Previously `@item [p. 12; @item2]` was incorrectly parsed as
three citations rather than two.  This is now fixed by ensuring
that `prefix` doesn't gobble any semicolons.
</content>
</entry>
<entry>
<title>Custom reader: ensure old Readers continue to work</title>
<updated>2021-12-11T16:59:11Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-09T07:36:17Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=e88224621de1a8f1be4ea7ad9bf05fe635ddc3cc'/>
<id>urn:sha1:e88224621de1a8f1be4ea7ad9bf05fe635ddc3cc</id>
<content type='text'>
Retry conversion by passing a string instead of sources when the
`Reader` fails with a message that hints at an outdated function. A
deprecation notice is reported in that case.
</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>Revert "Markdown reader: Improve inlinesInBalancedBrackets."</title>
<updated>2021-12-08T07:52:29Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-08T07:52:29Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=45e51ecd65beb663973508799bd7cfd6a304930b'/>
<id>urn:sha1:45e51ecd65beb663973508799bd7cfd6a304930b</id>
<content type='text'>
This reverts commit fa83246d7de8527bbf59dfac9636a42ede185194.
</content>
</entry>
<entry>
<title>Ipynb reader &amp; writer: properly handle cell "id".</title>
<updated>2021-12-07T07:40:51Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-07T07:39:08Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=51142c6803cab7486dbe962f274174d246e571aa'/>
<id>urn:sha1:51142c6803cab7486dbe962f274174d246e571aa</id>
<content type='text'>
This is passed through if it exists (in Nb4); otherwise
the writer will add a random one so that cells all have
an "id".

Closes #7728.
</content>
</entry>
</feed>
