Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-02-06 | Fix import | John MacFarlane | 1 | -1/+1 | |
2017-02-06 | Changed year on copyright message. | John MacFarlane | 1 | -1/+1 | |
2017-02-06 | Consolidated file arguments into Opt. | John MacFarlane | 1 | -4/+7 | |
2017-02-06 | Further refactoring of App. | John MacFarlane | 1 | -8/+724 | |
Moved option parsing code into App. pandoc.hs is now a 2-liner. | |||||
2017-02-05 | Fix an unneeded import warning. | John MacFarlane | 1 | -1/+1 | |
2017-02-05 | Split pandoc.hs into a module, Text.Pandoc.App, and a small program. | John MacFarlane | 1 | -0/+720 | |
The App module provides a function that does a pandoc conversion, based on option settings. The program (pandoc.hs) now does nothing more than parse options and pass them to this function, which can easily be used by other applications (e.g. a GUI wrapper). The Opt structure has been further simplified. API changes: * New exposed module Text.Pandoc.App * Text.Pandoc.Highlighting has been exposed. * highlightingStyles has been moved to Text.Pandoc.Highlighting. |