<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pandoc/tests/writer.html, 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>2017-01-25T20:51:26Z</updated>
<entry>
<title>Provide explicit separate functions for HTML 4 and 5.</title>
<updated>2017-01-25T20:51:26Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-01-25T20:51:26Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=fce0a60f0a85d6c3a9e7633074ecd781af08c75b'/>
<id>urn:sha1:fce0a60f0a85d6c3a9e7633074ecd781af08c75b</id>
<content type='text'>
* Text.Pandoc.Writers.HTML: removed writeHtml, writeHtmlString,
  added writeHtml4, writeHtml4String, writeHtml5, writeHtml5String.
* Removed writerHtml5 from WriterOptions.
* Renamed default.html template to default.html4.
* "html" now aliases to "html5"; to get the old HTML4 behavior,
  you must now specify "-t html4".
</content>
</entry>
<entry>
<title>Changed email-obfuscation default to no obfuscation.</title>
<updated>2016-06-20T17:37:23Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2016-06-20T17:35:14Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=58d60b1c85888697acec1edf54d166a864320717'/>
<id>urn:sha1:58d60b1c85888697acec1edf54d166a864320717</id>
<content type='text'>
- `writerEmailObfuscation` in `defaultWriterOptions` is now
  `NoObfuscation`
- the default for the command-line `--email-obfuscation` option is
  now `none`.

Closes #2988.
</content>
</entry>
<entry>
<title>Modified readers to emit SoftBreak when appropriate.</title>
<updated>2015-12-12T17:31:51Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-12-12T17:31:51Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=af7e78243682ec7c353dd202590c45c734f86ada'/>
<id>urn:sha1:af7e78243682ec7c353dd202590c45c734f86ada</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Implemented SoftBreak and new `--wrap` option.</title>
<updated>2015-12-12T07:55:08Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-12-11T23:58:11Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=536b6bf538a95f6db6ed41b72257f8b09fd26886'/>
<id>urn:sha1:536b6bf538a95f6db6ed41b72257f8b09fd26886</id>
<content type='text'>
Added threefold wrapping option.

* Command line option: deprecated `--no-wrap`, added
  `--wrap=[auto|none|preserve]`
* Added WrapOption, exported from Text.Pandoc.Options
* Changed type of writerWrapText in WriterOptions from
  Bool to WrapOption.
* Modified Text.Pandoc.Shared functions for SoftBreak.
* Supported SoftBreak in writers.
* Updated tests.
* Updated README.

Closes #1701.
</content>
</entry>
<entry>
<title>Fixed email javascript obfuscation with mailto: URLs.</title>
<updated>2015-07-07T18:15:40Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-07-07T18:15:40Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=9e528f4c0ce47c3ae7d233ba9627d2ed3df60fd7'/>
<id>urn:sha1:9e528f4c0ce47c3ae7d233ba9627d2ed3df60fd7</id>
<content type='text'>
This fixes a potential security issue.  Because single quotes weren't
being escaped in the link portion, a specially crafted email address
could allow javascript code injection.

    [Jim'+alert('hi')+'OBrien](mailto:me@example.com)

Closes #2280.
</content>
</entry>
<entry>
<title>Append newline to the LineBreak of various writers</title>
<updated>2015-02-05T06:42:22Z</updated>
<author>
<name>Tim Lin</name>
<email>timtylin@gmail.com</email>
</author>
<published>2015-02-05T06:42:22Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=0c18f3a854efaba54367f66d0f572afcab7d57f0'/>
<id>urn:sha1:0c18f3a854efaba54367f66d0f572afcab7d57f0</id>
<content type='text'>
This change improves output formatting of content with a large amount of force line breaks, such as line-blocks. The following writers are affected:

* Dokuwiki
* HTML
* EPUB (via HTML)
* LaTeX
* MediaWiki
* OpenDocument
* Texinfo

This commit resolves #1924
</content>
</entry>
<entry>
<title>HTML writer: Add "inline" or "display" class to math spans.</title>
<updated>2015-02-01T19:08:27Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2015-02-01T19:08:27Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=6a0d4da38267830e98f89fb9a79a244d6208387c'/>
<id>urn:sha1:6a0d4da38267830e98f89fb9a79a244d6208387c</id>
<content type='text'>
This allows inline and display math to be styled differently.

Closes #1914.
</content>
</entry>
<entry>
<title>HTML writer:  put newline btw img and caption paragraph.</title>
<updated>2014-12-16T05:49:16Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2014-12-16T05:49:16Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=0eb3f8cff2c48150e9263b17faeacb636549ccdc'/>
<id>urn:sha1:0eb3f8cff2c48150e9263b17faeacb636549ccdc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Markdown reader:  better handling of paragraph in div.</title>
<updated>2014-08-31T19:55:47Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2014-08-31T19:55:47Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=598d3ee23b708634ac8526cdc03291f17803eb2a'/>
<id>urn:sha1:598d3ee23b708634ac8526cdc03291f17803eb2a</id>
<content type='text'>
Previously text that ended a div would be parsed as Plain
unless there was a blank line before the closing div tag.

Test case:

    &lt;div class="first"&gt;
    This is a paragraph.

    This is another paragraph.
    &lt;/div&gt;

Closes #1591.
</content>
</entry>
<entry>
<title>HTML writer:  use 'uri' or 'email' class for autolinks.</title>
<updated>2014-08-12T22:49:43Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2014-08-12T22:49:43Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=81157c7cc6ab72fc70bfba18f90c3f12142b7e4e'/>
<id>urn:sha1:81157c7cc6ab72fc70bfba18f90c3f12142b7e4e</id>
<content type='text'>
This allows them to be styled specially.

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