summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Options.hs
Commit message (Collapse)AuthorAge
...
* Made pandocExtensions default for reader/writer options.John MacFarlane2012-08-07
|
* Support hard_line_breaks markdown extension.John MacFarlane2012-08-06
| | | | | | | | * Added Ext_hard_line_breaks. * Added section in README on non-pandoc extensions. * Exported pandocExtensions and strictExtensions in Text.Pandoc.Options. Closes #514.
* Commented out extensions that don't yet do anything.John MacFarlane2012-07-27
|
* Removed deprecated writerXeTeX.John MacFarlane2012-07-27
|
* Markdown reader: Added sensitivity to Ext_example_lists.John MacFarlane2012-07-27
|
* Replaced writerStrict with writerExtensions in WriterOptions.John MacFarlane2012-07-27
| | | | | Still have not implemented individual tests for all the extensions in the markdown writer.
* Moved WriterOptions and associated types Shared -> Options.John MacFarlane2012-07-26
|
* Use readerExtensions instead of readerStrict in readers.John MacFarlane2012-07-26
| | | | Test individually for the extensions.
* pandoc: Set readerExtensions instead of readerStrict.John MacFarlane2012-07-26
|
* Changed reader parameters from ParserState to ReaderOptions.John MacFarlane2012-07-25
|
* Restored stateStandalone as readerStandalone.John MacFarlane2012-07-25
| | | | It is indeed needed by the RST reader.
* Moved stateApplyMacros, stateIndentedCodeClasses to ReaderOptions.John MacFarlane2012-07-25
|
* stateCitations -> readerCitations.John MacFarlane2012-07-25
|
* Moved stateLiterateHaskell to readerLiterateHaskell in Options.John MacFarlane2012-07-25
|
* Moved stateOldDashes to readerOldDashes in ReaderOptions.John MacFarlane2012-07-25
|
* Moved stateTabStop to readerTabStop in ReaderOptions.John MacFarlane2012-07-25
|
* Moved stateColumns to readerColumns in ReaderOptions.John MacFarlane2012-07-25
|
* Moved ParseRaw from ParserState to ReaderOptions.John MacFarlane2012-07-25
|
* Options -> ReaderOptions.John MacFarlane2012-07-25
| | | | Better to keep reader and writer options separate.
* Put smart, strict in separate options field in state.John MacFarlane2012-07-25
| | | | | | | | | This is the beginning of a larger transition that will make Options, not ParserState, the parameter of the read functions. (Options will also be used in writers, in place of WriterOptions.) Next step is to remove strict, replacing it with granular tests for different extensions.
* Added Text.Pandoc.Options.John MacFarlane2012-07-25