<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pandoc/tests/Tests/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>2017-02-04T11:56:30Z</updated>
<entry>
<title>Moved tests/ -&gt; test/.</title>
<updated>2017-02-04T11:56:30Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-02-04T11:56:30Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=18ab8642692caca2716fd9b5a0e6dbfd3d9cf9cc'/>
<id>urn:sha1:18ab8642692caca2716fd9b5a0e6dbfd3d9cf9cc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed some compiler warnings in tests.</title>
<updated>2017-01-30T09:10:54Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-01-30T09:10:54Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=e20e88220ef9a0c10baf198439e3f3ded7d27004'/>
<id>urn:sha1:e20e88220ef9a0c10baf198439e3f3ded7d27004</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Removed readerVerbosity and writerVerbosity.</title>
<updated>2017-01-25T16:07:43Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-01-22T23:06:04Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=70b86f48e1cd11b2c861951ec0a121fa5a54f889'/>
<id>urn:sha1:70b86f48e1cd11b2c861951ec0a121fa5a54f889</id>
<content type='text'>
API change.

Also added a verbosity parameter to makePDF.
</content>
</entry>
<entry>
<title>Removed unneeded imports.</title>
<updated>2017-01-25T16:07:42Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-01-15T21:14:31Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=8d179f75089fdb6c4101bfa9bcee1e75e08237fb'/>
<id>urn:sha1:8d179f75089fdb6c4101bfa9bcee1e75e08237fb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Made `smart` extension default for pandoc markdown.</title>
<updated>2017-01-25T16:07:42Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-01-15T19:42:00Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=4f6e6247f9a672770a6d7a55a3aa2709a860ff38'/>
<id>urn:sha1:4f6e6247f9a672770a6d7a55a3aa2709a860ff38</id>
<content type='text'>
Updated tests.
</content>
</entry>
<entry>
<title>Removed readerSmart and the --smart option; added Ext_smart extension.</title>
<updated>2017-01-25T16:07:42Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-01-14T17:27:06Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=6f8b967d98ea4270aa2492688fbcdfe8bad150b2'/>
<id>urn:sha1:6f8b967d98ea4270aa2492688fbcdfe8bad150b2</id>
<content type='text'>
Now you will need to do

    -f markdown+smart

instead of

    -f markdown --smart

This change opens the way for writers, in addition to readers,
to be sensitive to +smart, but this change hasn't yet been made.

API change. Command-line option change.

Updated manual.
</content>
</entry>
<entry>
<title>Make Extensions a custom type instead of a Set Extension.</title>
<updated>2017-01-25T16:07:42Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2017-01-14T12:06:27Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=3876b91448ad8d279f5d5a9d217e00cf4583e14b'/>
<id>urn:sha1:3876b91448ad8d279f5d5a9d217e00cf4583e14b</id>
<content type='text'>
The type is implemented in terms of an underlying bitset
which should be more efficient.

API change: from Text.Pandoc.Extensions export Extensions,
emptyExtensions, extensionsFromList, enableExtension, disableExtension,
extensionEnabled.
</content>
</entry>
<entry>
<title>Removed `--normalize` option and normalization functions from Shared.</title>
<updated>2017-01-25T16:07:41Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2016-12-11T21:09:33Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=8165014df679338d5bf228d84efc74b2c5ac39d2'/>
<id>urn:sha1:8165014df679338d5bf228d84efc74b2c5ac39d2</id>
<content type='text'>
* Removed normalize, normalizeInlines, normalizeBlocks
  from Text.Pandoc.Shared.  These shouldn't now be necessary,
  since normalization is handled automatically by the Builder
  monoid instance.

* Remove `--normalize` command-line option.

* Don't use normalize in tests.

* A few revisions to readers so they work well without normalize.
</content>
</entry>
<entry>
<title>Added ReaderOptions parameter to readNative.</title>
<updated>2017-01-25T16:07:41Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2016-12-10T15:52:35Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=2e7b0c7edaac9fbba52ac3cbc6380dbfb74805cf'/>
<id>urn:sha1:2e7b0c7edaac9fbba52ac3cbc6380dbfb74805cf</id>
<content type='text'>
This makes it similar to the other readers -- even
though ReaderOptions is essentially ignored, the uniformity
is nice.
</content>
</entry>
<entry>
<title>Class:  no more MonadState CommonState.</title>
<updated>2017-01-25T16:07:41Z</updated>
<author>
<name>John MacFarlane</name>
<email>jgm@berkeley.edu</email>
</author>
<published>2016-12-08T20:32:25Z</published>
<link rel='alternate' type='text/html' href='https://git.pashev.ru/pandoc/commit/?id=54932ade677b48ec42f6461028a3b58bb85aaa50'/>
<id>urn:sha1:54932ade677b48ec42f6461028a3b58bb85aaa50</id>
<content type='text'>
- Added getCommonState, putCommonState, getsCommonState, modifyCommonState
  to PandocMonad interface.

- Removed MonadState CommonState instances.
</content>
</entry>
</feed>
