<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pandoc/test/command, 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>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>Citeproc: avoid adding comma before an author-in-text citation...</title>
<updated>2021-12-18T20:13:06Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-18T20:13:06Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=4b220d592c163efb0bf5a0e1db2ed7d6be9c69e7'/>
<id>urn:sha1:4b220d592c163efb0bf5a0e1db2ed7d6be9c69e7</id>
<content type='text'>
...in a note if it begins with a title (no author).

Closes #7761.
</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 writer: add tests for org-cite citations, and improve support.</title>
<updated>2021-12-13T20:11:58Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-13T20:10:13Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=9f089aa2863afdbfacd8a43dc85f0b8c53463bb8'/>
<id>urn:sha1:9f089aa2863afdbfacd8a43dc85f0b8c53463bb8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add test for #7738.</title>
<updated>2021-12-08T07:59:59Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-12-08T07:59:59Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=ccb9db34f8af9c201f02e1defc409b5e9523a523'/>
<id>urn:sha1:ccb9db34f8af9c201f02e1defc409b5e9523a523</id>
<content type='text'>
</content>
</entry>
</feed>
