summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Added aeson-pretty to osx/stack.yaml.John MacFarlane2016-07-15
|
* Use cmark-0.5.3 in stack.yaml.John MacFarlane2016-07-15
|
* Don't require haddock-library 1.4.John MacFarlane2016-07-15
| | | | Instead use CPP to work around version differences.
* Use liftM since otherwise Functor type constraint needen in ghc 7.8.John MacFarlane2016-07-15
|
* Fixed compiler warnings.John MacFarlane2016-07-14
|
* Haddock reader - support math.John MacFarlane2016-07-14
| | | | | The Haddock document model added elements for math in 1.4.
* Require haddock-library >= 1.4.John MacFarlane2016-07-14
| | | | This has math support, DocMathInline and DocMathDisplay.
* Use pandoc-citeproc-0.10.1 for packages.John MacFarlane2016-07-14
|
* Updated man page.John MacFarlane2016-07-14
|
* Fixed duplicate reference in README.John MacFarlane2016-07-14
|
* Docx Writer: Use actual creation time as doc propJesse Rosenthal2016-07-14
| | | | | | | | Previously, we had used the user-supplied date, if available, for Word's document creation metadata. This could lead to weird results, as in cases where the user post-dates a document (so the modification might be prior to the creation). Here we use the actual computer time to set the document creation.
* Shared: improve year sanity check in normalizeDateJesse Rosenthal2016-07-14
| | | | | | | | Previously we parsed a list of dates, took the first one, and then tested its year range. That meant that if the first one failed, we returned nothing, regardless of what the others did. Now we test for sanity before running `msum` over the list of Maybe values. Anything failing the test will be Nothing, so will not be a candidate.
* Shared: normalizeDate should reject illegal years.Jesse Rosenthal2016-07-14
| | | | | | | We only allow years between 1601 and 9999, inclusive. The ISO 8601 actually says that years are supposed to start with 1583, but MS Word only allows 1601-9999. This should stop corrupted word files if the date is out of that range, or is parsed incorrectly.
* Shared: Add further formats for `normalizeDate`Jesse Rosenthal2016-07-14
| | | | | | We want to avoid illegal dates -- in particular years with greater than four digits. We attempt to parse series of digits first as `%Y%m%d`, then `%Y%m`, and finally `%Y`.
* Added resolver clause to stack.lts6.yaml.John MacFarlane2016-07-14
|
* Added winpkg target to Makefile.John MacFarlane2016-07-14
| | | | | | | This downloads the windows package from appveyor and signs it using the key. This way we needn't mess with a Windows VM to build the package.
* make_oxs_package.sh - use OSX env variable.John MacFarlane2016-07-14
|
* Version to 1.17.2.John MacFarlane2016-07-14
|
* Removed some redundant class constraints.John MacFarlane2016-07-14
|
* Fixed lts6 travis build.John MacFarlane2016-07-14
|
* Merge pull request #3019 from tarleb/org-verbatim-fixJohn MacFarlane2016-07-14
|\ | | | | Org reader: fix parsing of verbatim inlines
| * Org reader: fix parsing of verbatim inlinesAlbert Krewinkel2016-07-14
| | | | | | | | | | | | | | | | | | | | Org rules for allowed characters before or after markup chars were not checked for verbatim text. This resultet in wrong parsing outcomes of if the verbatim text contained e.g. space enclosed markup characters as part of the text (`=is_substr = True=`). Forcing the parser to update the positions of allowed/forbidden markup border characters fixes this. This fixes #3016.
* | Fixed exponential parsing bug in textile reader.John MacFarlane2016-07-14
|/ | | | Closes #3020.
* stack.yaml - use ghc 8.01 and nightly.John MacFarlane2016-07-13
|
* Allow QuickCheck 2.9.John MacFarlane2016-07-11
|
* Merge pull request #3014 from tarleb/org-writer-divJohn MacFarlane2016-07-05
|\ | | | | Org writer: improve Div handling
| * Org writer: improve Div handlingAlbert Krewinkel2016-07-05
| | | | | | | | | | | | | | | | | | | | | | | | | | Div blocks handling is changed to make the output look more like idiomatic org mode: - Div-wrapped content is output as-is if the div's attribute is the null attribute. - Div containers with an id but neither classes nor key-value pairs are unwrapped and the id is added as an anchor. - Divs with classes associated with greater block elements are wrapped in a `#+BEGIN`...`#+END` block. - The old behavior for Divs with more complex attributes is kept.
* | Added http-client dependencies to stack.yaml files.John MacFarlane2016-07-04
| |
* | Depend on http-client 0.5, http-client-tls 0.3John MacFarlane2016-07-04
| |
* | Merge pull request #3012 from tarleb/org-drop-ugly-pragmaJohn MacFarlane2016-07-04
|\ \ | |/ |/| Org reader: replace ugly code with view pattern
| * Org reader: replace ugly code with view patternAlbert Krewinkel2016-07-04
|/ | | | | | | Some less-than-smart code required a pragma switching of overlapping pattern warnings in order to compile seamlessly. Using view patterns makes the code easier to read and also doesn't require overlapping pattern checks to be disabled.
* Merge pull request #3010 from tarleb/org-header-treeJohn MacFarlane2016-07-03
|\ | | | | Org reader: support archived trees, headline levels export setting
| * Org reader: support headline levels export settingAlbert Krewinkel2016-07-03
| | | | | | | | | | The depths of headlines can be modified using the `H` option. Deeper headlines will be converted to lists.
| * Org reader: put export setting parser into moduleAlbert Krewinkel2016-07-02
| | | | | | | | | | Export option parsing is distinct enough from general block parsing to justify putting it into a separate module.
| * Org reader: support archived trees export optionsAlbert Krewinkel2016-07-01
| | | | | | | | | | | | | | Handling of archived trees can be modified using the `arch` option. Archived trees are either dropped, exported completely, or collapsed to include just the header when the `arch` option is nil, non-nil, or `headline`, respectively.
| * Org reader: refactor comment tree handlingAlbert Krewinkel2016-07-01
| | | | | | | | | | | | Comment trees were handled after parsing, as pattern matching on lists is easier than matching on sequences. The new method of reading documents as trees allows for more elegant subtree removal.
| * Org reader: parse as headlines, convert to blocksAlbert Krewinkel2016-07-01
| | | | | | | | | | | | | | Emacs org-mode is based on outline-mode, which treats documents as trees with headlines are nodes. The reader is refactored to parse into a similar tree structure. This simplifies transformations acting on document (sub-)trees.
| * Org reader: improve tag and properties type safetyAlbert Krewinkel2016-07-01
| | | | | | | | | | Specific newtype definitions are used to replace stringly typing of tags and properties. Type safety is increased while readability is improved.
* | Odt reader: Removed redundant Monoid constraints.John MacFarlane2016-07-03
| |
* | Fix warning for parseURl import.John MacFarlane2016-07-03
| |
* | CPP workaround for deprecation of parseUrl in http-client.John MacFarlane2016-07-03
| |
* | Travis: don't test on lts-5.John MacFarlane2016-07-03
| |
* | Allow 'standout' as a beamer frame option.John MacFarlane2016-07-03
| | | | | | | | | | | | ## Slide title {.standout} Closes #3007.
* | stack.yaml: use 6.5 resolver.John MacFarlane2016-07-03
| |
* | LaTeX reader: strip off double quotes around image source if present.John MacFarlane2016-07-01
| | | | | | | | | | Avoids interpreting these as part of the literal filename. See #2825.
* | LaTeX writer: don't URI-escape image source.John MacFarlane2016-07-01
| | | | | | | | | | Usually this is a local file, and replacing spaces with `%20` ruins things. Closes #2825.
* | beamer, latex templates: pass biblatexoptions directly in package load.John MacFarlane2016-07-01
| | | | | | | | This allows runtime optinos to be used. Fixes jgm/pandoc-citeproc#201
* | ZimWiki writer: removed commented out code that confused Haddock.John MacFarlane2016-07-01
|/ | | | See https://travis-ci.org/jgm/pandoc/jobs/141542247
* Added ZimWiki format to documentation and cabal description.Alex Ivkin2016-07-01
|
* Added Zim Wiki writer, template and tests.Alex Ivkin2016-06-30
|