Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-06-22 | Update texmath lower bound. | John MacFarlane | 2 | -1/+2 | |
2016-06-21 | Org reader: remove partial functions | Albert Krewinkel | 2 | -19/+21 | |
Partial functions like `head` lead to avoidable errors and should be avoided. They are replaced with total functions. This fixes #2991. | |||||
2016-06-20 | Implement RawInline and RawBlock in sample lua custom writer. | John MacFarlane | 1 | -0/+12 | |
Closes #2985. | |||||
2016-06-20 | Changed email-obfuscation default to no obfuscation. | John MacFarlane | 4 | -15/+5 | |
- `writerEmailObfuscation` in `defaultWriterOptions` is now `NoObfuscation` - the default for the command-line `--email-obfuscation` option is now `none`. Closes #2988. | |||||
2016-06-14 | Merge pull request #2979 from tarleb/doc-update | John MacFarlane | 1 | -21/+22 | |
Documentation updates | |||||
2016-06-14 | Merge pull request #2980 from tarleb/org-raw-inlines | John MacFarlane | 3 | -4/+17 | |
Org reader: raw inlines in arbitrary formats | |||||
2016-06-14 | Merge pull request #2981 from felixonmars/patch-1 | John MacFarlane | 1 | -1/+1 | |
Allow tagsoup 0.14 | |||||
2016-06-14 | Allow tagsoup 0.14 | Felix Yan | 1 | -1/+1 | |
Building with the new release went fine here, and it works correctly. | |||||
2016-06-14 | Document Org mode as a format containing raw HTML | Albert Krewinkel | 1 | -4/+4 | |
Raw HTML is kept when the output format is Emacs Org mode. | |||||
2016-06-13 | Org reader: support arbitrary raw inlines | Albert Krewinkel | 2 | -1/+13 | |
Org mode allows arbitrary raw inlines ("export snippets" in Emacs parlance) to be included as `@@format:raw foreign format text@@`. Support for this features is added to the Org reader. | |||||
2016-06-13 | Org writer: support arbitrary raw inlines | Albert Krewinkel | 1 | -3/+4 | |
Org mode allows arbitrary raw inlines ("export snippets" in Emacs parlance) to be included as `@@format:raw foreign format text@@`. Support for this features is added to the Org writer. | |||||
2016-06-12 | Document Org mode as a format containing raw TeX | Albert Krewinkel | 1 | -5/+5 | |
Raw TeX is kept verbatim when the output format is Emacs Org mode. | |||||
2016-06-12 | Document MultiMarkdown as input/output format | Albert Krewinkel | 1 | -12/+13 | |
MultiMarkdown was only mentioned as a supported Markdown dialect but not as a possible input or output format. A brief mention is added everywhere the other supported markdown dialects are mentioned. This closes #2973. | |||||
2016-06-07 | trypandoc: call results 'html' instead of 'result'. | John MacFarlane | 2 | -2/+2 | |
This is for better compatibility with babelmark2. | |||||
2016-06-07 | Merge pull request #2968 from IvoBCD/docbook5-xlink-ns | John MacFarlane | 1 | -1/+1 | |
Docbook writer: Declare xlink namespace in Docbook5 output | |||||
2016-06-07 | latex template: fix for obscure hyperref/xelatex issue. | John MacFarlane | 5 | -15/+29 | |
Here's a minimal case: \documentclass[]{article} \usepackage{hyperref} \begin{document} \section{\%á} \end{document} Without this change, this fails on the second invocation of xelatex. See https://tex.stackexchange.com/questions/313266/and-non-ascii-characters-in-headings This affects inputs this like # %á with pdf output via xelatex. | |||||
2016-06-07 | Docbook writer: Declare xlink namespace in Docbook5 output | Ivo Clarysse | 1 | -1/+1 | |
2016-06-05 | Merge pull request #2964 from tarleb/org-berkeley-ref | John MacFarlane | 3 | -8/+177 | |
Org reader: "Berkeley style" citation support | |||||
2016-06-05 | Org reader: add support for "Berkeley-style" cites | Albert Krewinkel | 3 | -7/+176 | |
A specification for an official Org-mode citation syntax was drafted by Richard Lawrence and enhanced with the help of others on the orgmode mailing list. Basic support for this citation style is added to the reader. This closes #1978. | |||||
2016-06-05 | Org reader: add semicolon to list of special chars | Albert Krewinkel | 1 | -1/+1 | |
Semicolons are used as special characters in citations syntax. This ensures the correct parsing of Pandoc-style citations: [prefix; @key; suffix] Previously, parsing would have failed unless there was a space or other special character as the last <prefix> character. | |||||
2016-06-04 | Use pandoc-citeproc-0.10 in binary pkgs. | John MacFarlane | 3 | -3/+3 | |
2016-06-04 | Removed -rtsopts from library stanza. | John MacFarlane | 1 | -2/+2 | |
It has no effect, and Hackage wouldn't accept the package. | |||||
2016-06-04 | make_osx_package.sh: removed executable signing. | John MacFarlane | 1 | -3/+6 | |
We just sign the pkg now. For some reason we were getting "obsolete resource envelope" in signing executables. This seems to be documented here http://stackoverflow.com/questions/25152451/are-mac-app-store-code-sign-resource-envelopes-always-version-1 and seems to be an El Capitan regression. Until a solution is found, we'll just sign the pkg. | |||||
2016-06-04 | appveyor: use improved method for creating msi. | John MacFarlane | 1 | -2/+2 | |
2016-06-04 | Improved Windows installer (nkalvi, #2708, #2389). | John MacFarlane | 5 | -85/+299 | |
* 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. | |||||
2016-06-04 | Fixed --local-bin-path in deb package script. | John MacFarlane | 1 | -1/+1 | |
2016-06-04 | Fixed osx packaging issues. | John MacFarlane | 2 | -3/+1 | |
2016-06-04 | osx build: use --local-bin-path. | John MacFarlane | 2 | -9/+10 | |
2016-06-04 | deb pkg: use --local-bin-path so we don't install to ~/.local. | John MacFarlane | 3 | -10/+10 | |
2016-06-04 | Updated man page. | John MacFarlane | 1 | -47/+66 | |
2016-06-04 | Updated date in README. | John MacFarlane | 1 | -1/+1 | |
2016-06-04 | Updated AUTHORS in README. | John MacFarlane | 1 | -0/+31 | |
2016-06-04 | Updated changelog. | John MacFarlane | 1 | -9/+13 | |
2016-06-04 | Travis: test with ghc 8.0.1, remove testing with ghc 7.4. | John MacFarlane | 2 | -4/+13 | |
2016-06-03 | Fixed windows/stack.yaml. | John MacFarlane | 1 | -2/+0 | |
Can't set flag on something not in extra-deps. | |||||
2016-06-03 | Use windows/stack.yaml for appveyor build. | John MacFarlane | 4 | -41/+10 | |
Use released pandoc-citeproc, not git. | |||||
2016-06-03 | appveyor.yml: diagnostics. | John MacFarlane | 1 | -0/+3 | |
2016-06-03 | appveyor.yml: Fix check for existing wixtoolset. | John MacFarlane | 1 | -1/+1 | |
2016-06-03 | Require latest highlighting-kate. | John MacFarlane | 1 | -3/+3 | |
2016-06-03 | appveyor improvements. | John MacFarlane | 1 | -7/+6 | |
- Create pandoc.msi as artifact. - Don't install wix unless we need to. | |||||
2016-06-03 | Windows build: create pandoc-citeproc on appveyor, so we can put in msi. | John MacFarlane | 2 | -7/+5 | |
Updated stackage resolver. | |||||
2016-06-03 | appveyor: Fixed spacing issue in VERSION setting. | John MacFarlane | 1 | -1/+1 | |
2016-06-03 | appveyor: another attempt to get version set! | John MacFarlane | 1 | -5/+6 | |
2016-06-03 | appveyor: another try at setting version. | John MacFarlane | 1 | -1/+3 | |
2016-06-03 | Updated changelog | John MacFarlane | 1 | -0/+9 | |
2016-06-03 | Merge pull request #2962 from tarleb/org-more-export-settings | John MacFarlane | 7 | -103/+175 | |
Org reader: support more export settings | |||||
2016-06-03 | Org reader: support special strings export option | Albert Krewinkel | 4 | -12/+36 | |
Parsing of special strings (like '...' as ellipsis or '--' as en dash) can be toggled using the `-` option. | |||||
2016-06-03 | Org reader: support emphasized text export option | Albert Krewinkel | 3 | -15/+28 | |
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. | |||||
2016-06-03 | Org reader: support smart quotes export option | Albert Krewinkel | 4 | -12/+28 | |
Reading of smart quotes can be toggled using the `'` option. | |||||
2016-06-02 | appveyor: Fixed version detection. | John MacFarlane | 1 | -1/+1 | |