<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pandoc/test/Tests/Writers, 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-22T17:45:02Z</updated>
<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 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>Powerpoint tests: shorten lines by grouping tests</title>
<updated>2021-12-10T17:25:28Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-12-10T17:10:36Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=a64ea1864743ed8d96acec04f2895dc638bc1df7'/>
<id>urn:sha1:a64ea1864743ed8d96acec04f2895dc638bc1df7</id>
<content type='text'>
This makes the test output more pleasant to read in narrow terminal
windows.
</content>
</entry>
<entry>
<title>JATS writer: ensure figures are wrapped with `&lt;p&gt;` in list items.</title>
<updated>2021-11-12T12:29:08Z</updated>
<author>
<name>Albert Krewinkel</name>
<email>albert@zeitkraut.de</email>
</author>
<published>2021-11-12T12:07:25Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=96a01451efd487d0f6a91a2785fd28be001a92bf'/>
<id>urn:sha1:96a01451efd487d0f6a91a2785fd28be001a92bf</id>
<content type='text'>
This prevents the generation of invalid output.
</content>
</entry>
<entry>
<title>pptx: Fix list level numbering</title>
<updated>2021-10-18T00:24:30Z</updated>
<author>
<name>Emily Bourke</name>
<email>undergroundquizscene@protonmail.com</email>
</author>
<published>2021-09-17T15:05:06Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=8af15ab345bb0790cc3442722673d9da9f23a79c'/>
<id>urn:sha1:8af15ab345bb0790cc3442722673d9da9f23a79c</id>
<content type='text'>
In PowerPoint, the content of a top-level list is at the same level as
the content of a top-level paragraph – the only difference is that a
list style has been applied.

At the moment, the pptx writer increments the paragraph level on each
list, turning what should be top-level lists into second-level lists.

This commit changes that logic, only incrementing the paragraph level on
continuation paragraphs of lists.

- Fixes https://github.com/jgm/pandoc/issues/4828
- Fixes https://github.com/jgm/pandoc/issues/4663
</content>
</entry>
<entry>
<title>asciidoc writer: translate numberLines attribute to linesnum switch</title>
<updated>2021-10-14T20:41:12Z</updated>
<author>
<name>Samuel Tardieu</name>
<email>sam@rfc1149.net</email>
</author>
<published>2021-10-14T14:16:25Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=a41c1fe0bbdf912f3585c7eb91b59340c35b9b77'/>
<id>urn:sha1:a41c1fe0bbdf912f3585c7eb91b59340c35b9b77</id>
<content type='text'>
AsciiDoctor allows to request line numbering on code blocks by
using a switch on the `source` block, such as in:

```
[source%linesnum,haskell]
----
some Haskell code here
----
```
</content>
</entry>
<entry>
<title>pptx: Remove excessive layout tests</title>
<updated>2021-10-07T15:45:43Z</updated>
<author>
<name>Emily Bourke</name>
<email>undergroundquizscene@protonmail.com</email>
</author>
<published>2021-10-07T14:25:15Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=aa78765bf9d21b3a617a9eafba59dd59e362aa6b'/>
<id>urn:sha1:aa78765bf9d21b3a617a9eafba59dd59e362aa6b</id>
<content type='text'>
When I added the tests for moved layouts and deleted layouts, I added
them to all tests. However, this doesn’t really give a lot more info
than having single tests, and the extra tests take up time and disk
space.

This commit removes the moved-layouts and deleted-layouts tests, in
favour of a single test for each of those scenarios.
</content>
</entry>
<entry>
<title>OOXML tests: use pretty-printed form to display diffs.</title>
<updated>2021-10-04T19:12:16Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-10-02T14:03:22Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=11baeb88505342c580cc3dd0263c4ba97e6ddb8a'/>
<id>urn:sha1:11baeb88505342c580cc3dd0263c4ba97e6ddb8a</id>
<content type='text'>
Otherwise everything is on one line and the diff is uninformative.
</content>
</entry>
<entry>
<title>Fix compareXML helper in Tests.Writers.OOXML.</title>
<updated>2021-10-02T13:52:40Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2021-10-02T13:51:21Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=6ff04ac52de07ef1de7d9ccba0d74db5aa12dda8'/>
<id>urn:sha1:6ff04ac52de07ef1de7d9ccba0d74db5aa12dda8</id>
<content type='text'>
Given how it is used, we were getting "mine" and "good"
flipped in the test results.
</content>
</entry>
<entry>
<title>pptx: Support footers in the reference doc</title>
<updated>2021-09-18T16:55:45Z</updated>
<author>
<name>Emily Bourke</name>
<email>undergroundquizscene@protonmail.com</email>
</author>
<published>2021-09-14T16:07:46Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=50adea220d09e445572e94e225fa7a81b3b2bf89'/>
<id>urn:sha1:50adea220d09e445572e94e225fa7a81b3b2bf89</id>
<content type='text'>
In PowerPoint, it’s possible to specify footers across all slides,
containing a date (optionally automatically updated to today’s date),
the slide number (optionally starting from a higher number than 1), and
static text. There’s also an option to hide the footer on the title
slide.

Before this commit, none of that footer content was pulled through from
the reference doc: this commit supports all the functionality listed
above.

There is one behaviour which may not be immediately obvious: if the
reference doc specifies a fixed date (i.e. not automatically updating),
and there’s a date specified in the metadata for the document, the
footer date is replaced by the metadata date.

- Include date, slide number, and static footer content from reference
  doc
- Respect “slide number starts from” option
- Respect “Don’t show on title slide” option
- Add tests
</content>
</entry>
</feed>
