<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pandoc/test, 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>Update the tests</title>
<updated>2021-12-29T13:50:01Z</updated>
<author>
<name>Igor Pashev</name>
<email>pashev.igor@gmail.com</email>
</author>
<published>2021-12-29T13:48:25Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=b80b03c0b3d03c9504854fe97e7e6def6fe7c609'/>
<id>urn:sha1:b80b03c0b3d03c9504854fe97e7e6def6fe7c609</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>OpenDocument writer: fix vertical align bug with display math.</title>
<updated>2021-12-29T00:06:25Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-29T00:06:25Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=7d56650e0137daf504fdd79187811f091d4eee37'/>
<id>urn:sha1:7d56650e0137daf504fdd79187811f091d4eee37</id>
<content type='text'>
Previously some displayed formulas would be floated above
a preceding text line.  This is fixed by setting vertical-rel
to 'text' rather than 'paragraph-content'.

Closes #7777.
</content>
</entry>
<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='https://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>HTML writer: make line breaks more consistent.</title>
<updated>2021-12-22T17:45:02Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-22T06:53:22Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=c4f6e6cb57e4fdda9ad59ff7220988810583ec60'/>
<id>urn:sha1:c4f6e6cb57e4fdda9ad59ff7220988810583ec60</id>
<content type='text'>
- With `--wrap=none`, we now output line breaks between
  block-level elements. Previously they were omitted
  entirely, so the whole document was on one line, unless
  there were literal line breaks in pre sections.  This makes
  the HTML writer's behavior more consistent with that of
  other writers.

- Put newline after `&lt;dd&gt;`.

- Put newlines after block-level elements in footnote section.
</content>
</entry>
<entry>
<title>Add text wrapping to HTML output.</title>
<updated>2021-12-22T17:45:02Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-20T21:44:03Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=7a9832166e36f77402d5e0259647e9f5c7ba4e58'/>
<id>urn:sha1:7a9832166e36f77402d5e0259647e9f5c7ba4e58</id>
<content type='text'>
Previously the HTML writer was exceptional in not being
sensitive to the `--wrap` option.  With this change `--wrap`
now works for HTML. The default (as with other formats) is
automatic wrapping to 72 columns.

A new internal module, T.P.Writers.Blaze, exports `layoutMarkup`.
This converts a blaze Html structure into a doclayout Doc Text.

In addition, we now add a line break between an `img` tag
and the associated `figcaption`.

Note: Output is never wrapped in `writeHtmlStringForEPUB`.
This accords with previous behavior since previously the HTML
writer was insensitive to `--wrap` settings.  There's no real
need to wrap HTML inside a zipped container.

Note that the contents of script, textarea, and pre tags are
always laid out with the `flush` combinator, so that unwanted
spaces won't be introduced if these occur in an indented context
in a template.

Closes #7764.
</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='https://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='https://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='https://git.pashev.ru/pandoc/commit/?id=1c389bf6b6236cefcadac3c2eefe62eb6c884863'/>
<id>urn:sha1:1c389bf6b6236cefcadac3c2eefe62eb6c884863</id>
<content type='text'>
</content>
</entry>
</feed>
