summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Improved Windows installer (nkalvi, #2708, #2389).John MacFarlane2016-06-04
| | | | | | | | | | | * Scope selection in the first screen. Since I couldn't detect if the user is 'real' admin user, default is still per user. * Scope is limited to per machine on servers. Though not perfect (couldn't detect `DisableMSI` policy), it should handle #2389 better. * For per machine, location can be changed by selecting Advanced. Localization: modified templates from WiX toolkit support localization very well. A short sample localization file for en-us is used. * Dialog elements are moved to their own files.
* Fixed --local-bin-path in deb package script.John MacFarlane2016-06-04
|
* Fixed osx packaging issues.John MacFarlane2016-06-04
|
* osx build: use --local-bin-path.John MacFarlane2016-06-04
|
* deb pkg: use --local-bin-path so we don't install to ~/.local.John MacFarlane2016-06-04
|
* Updated man page.John MacFarlane2016-06-04
|
* Updated date in README.John MacFarlane2016-06-04
|
* Updated AUTHORS in README.John MacFarlane2016-06-04
|
* Updated changelog.John MacFarlane2016-06-04
|
* Travis: test with ghc 8.0.1, remove testing with ghc 7.4.John MacFarlane2016-06-04
|
* Fixed windows/stack.yaml.John MacFarlane2016-06-03
| | | | Can't set flag on something not in extra-deps.
* Use windows/stack.yaml for appveyor build.John MacFarlane2016-06-03
| | | | Use released pandoc-citeproc, not git.
* appveyor.yml: diagnostics.John MacFarlane2016-06-03
|
* appveyor.yml: Fix check for existing wixtoolset.John MacFarlane2016-06-03
|
* Require latest highlighting-kate.John MacFarlane2016-06-03
|
* appveyor improvements.John MacFarlane2016-06-03
| | | | | - Create pandoc.msi as artifact. - Don't install wix unless we need to.
* Windows build: create pandoc-citeproc on appveyor, so we can put in msi.John MacFarlane2016-06-03
| | | | Updated stackage resolver.
* appveyor: Fixed spacing issue in VERSION setting.John MacFarlane2016-06-03
|
* appveyor: another attempt to get version set!John MacFarlane2016-06-03
|
* appveyor: another try at setting version.John MacFarlane2016-06-03
|
* Updated changelogJohn MacFarlane2016-06-03
|
* Merge pull request #2962 from tarleb/org-more-export-settingsJohn MacFarlane2016-06-03
|\ | | | | Org reader: support more export settings
| * Org reader: support special strings export optionAlbert Krewinkel2016-06-03
| | | | | | | | | | Parsing of special strings (like '...' as ellipsis or '--' as en dash) can be toggled using the `-` option.
| * Org reader: support emphasized text export optionAlbert Krewinkel2016-06-03
| | | | | | | | | | | | | | Parsing of emphasized text can be toggled using the `*` option. This influences parsing of text marked as emphasized, strong, strikeout, and underline. Parsing of inline math, code, and verbatim text is not affected by this option.
| * Org reader: support smart quotes export optionAlbert Krewinkel2016-06-03
| | | | | | | | Reading of smart quotes can be toggled using the `'` option.
| * Org reader: drop unused field from parser stateAlbert Krewinkel2016-06-02
| | | | | | | | | | | | | | | | | | The `OrgParserState` contained both an `orgStateMeta` and `orgStateMeta'` field, the former for plain meta information and the latter for F-monad wrapped meta info. The plain meta info is only used to make `OrgParserState` an instance of the `HasMeta` class, which in turn is never used in the reader. The (F Meta) version is hence renamed to the "un-primed" version while the other one is dropped.
| * Org reader: undo code duplicationAlbert Krewinkel2016-06-02
| | | | | | | | | | | | | | | | Some code was duplicated (copy-pasted) or placed in an inappropriate module during the modularization refactoring. Those functions are moved into a `Shared` module, as was originally intended but forgotten. Better documentation of the respective functions is a positive side-effect.
* | appveyor: Fixed version detection.John MacFarlane2016-06-02
| |
* | appveyor: cache wixbin directory.John MacFarlane2016-06-02
| |
* | appveyor: maybe fixed escaping.John MacFarlane2016-06-02
| |
* | Fixed YAML for appveyor.yml.John MacFarlane2016-06-02
| |
* | appveyor: fixed set command.John MacFarlane2016-06-02
| |
* | appveyor: put wix path in quotes.John MacFarlane2016-06-02
| |
* | appveyor: another attempt to get wix paths right.John MacFarlane2016-06-02
| |
* | appveyor.yml: try to get paths for candle and light right.John MacFarlane2016-06-02
| |
* | appveyor: try to create msi as artifact.John MacFarlane2016-06-02
| |
* | Updated changelog.John MacFarlane2016-06-02
|/
* Merge pull request #2950 from tarleb/org-ref-supportJohn MacFarlane2016-05-31
|\ | | | | Org reader: support org-ref style citations
| * Org reader: support org-ref style citationsAlbert Krewinkel2016-05-27
| | | | | | | | | | | | The *org-ref* package is an org-mode extension commonly used to manage citations in org documents. Basic support for the `cite:citeKey` and `[[cite:citeKey][prefix text::suffix text]]` syntax is added.
* | Merge pull request #2954 from tarleb/org-export-blocksJohn MacFarlane2016-05-31
|\ \ | | | | | | Org export blocks
| * | Org reader: support new syntax for export blocksAlbert Krewinkel2016-05-29
| | | | | | | | | | | | | | | | | | | | | Org-mode version 9 usees a new syntax for export blocks. Instead of `#+BEGIN_<FORMAT>`, where `<FORMAT>` is the format of the block's content, the new format uses `#+BEGIN_export <FORMAT>` instead. Both types are supported.
| * | Org reader: refactor BEGIN…END block parsingAlbert Krewinkel2016-05-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Reorder functions, grouping related functions together. - Demote simple functions to local functions if they are used just once. - Rename and document functions to increase code readability. - Fix handling of whitespace in blocks, allowing content to be indented less then the block header.
| * | Org reader: rename `parseInlines` to `inlines`Albert Krewinkel2016-05-29
| |/ | | | | | | | | | | Having a function starting with `parse` in a parsing library is overly redundant. Let's use a nicer, shorter name more in line with the rest of the library.
* / brazilian -> brazil for polyglossia.John MacFarlane2016-05-31
|/ | | | Closes #2953.
* Merge pull request #2946 from tarleb/org-modularizationJohn MacFarlane2016-05-25
|\ | | | | Org-mode reader modularization
| * Org reader: extract blocks parser to moduleAlbert Krewinkel2016-05-25
| | | | | | | | | | | | Block parsing code is moved to a separate module. This is part of the Org-mode reader cleanup effort.
| * Org reader: extract inline parser to moduleAlbert Krewinkel2016-05-25
| | | | | | | | | | | | | | Inline parsing code is moved to a separate module. Parsers for block starts are extracted as well, as those are used in the `endline` parser. This is part of the Org-mode reader cleanup effort.
| * Org reader: extract parsing function to moduleAlbert Krewinkel2016-05-25
|/ | | | | | | | | | | | The Org-mode reader uses many functions defined in the `Text.Pandoc.Parsing` utility module. Some of the functions are overwritten with versions adapted to Org-mode idiosyncrasies. These special functions, as well as the normal Pandoc versions, are combined in a single module to increase the ease of use. This leads to decoupling of Org-mode and Pandoc and hence to slightly cleaner code. The downside is code-bloat due to repeated import/export statements.
* Merge pull request #2942 from mb21/epub-readerJohn MacFarlane2016-05-24
|\ | | | | EPUB Reader: normalise Link id as well
| * EPUB Reader: normalise Link id as wellmb212016-05-24
|/