Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-03-16 | Version bump to 1.11.1. | John MacFarlane | 2 | -2/+2 | |
2013-03-16 | Version bump to 1.11.0.1. | John MacFarlane | 1 | -1/+1 | |
2013-03-16 | Updated changelog. | John MacFarlane | 1 | -0/+49 | |
2013-03-16 | Bumped QuickCheck version bound. | John MacFarlane | 1 | -1/+1 | |
2013-03-16 | Fixed numbering mismatch between TOC and sections in HTML. | John MacFarlane | 2 | -4/+5 | |
Also made `--number-offset` affect TOC numbering as well as section numbering, as it should have all along. Closes #789. | |||||
2013-03-15 | Merge pull request #787 from sheremetyev/wix-allusers | John MacFarlane | 3 | -28/+70 | |
Improve installation for all users on Windows | |||||
2013-03-15 | Fixed regression in ODT writer. | John MacFarlane | 1 | -2/+2 | |
This was due to a change in the Show instance for Text.Pandoc.Pretty.Doc, which led 1.11 to produce corrupt ODTs. Closes #780. | |||||
2013-03-15 | WiX: Remove unnecessary parameter for candle.exe. | Fyodor Sheremetyev | 1 | -1/+1 | |
2013-03-15 | WiX: Revert back to “Minimal” template. | Fyodor Sheremetyev | 1 | -6/+8 | |
The “Advanced” template doesn’t uninstall previous version if it was installed per-machine. FindRelatedProducts action executes before ALLUSERS property is set and search is performed in per-user products only. | |||||
2013-03-15 | WiX: Update system PATH environment variable when installing per-machine. | Fyodor Sheremetyev | 1 | -2/+21 | |
Had to create two separate components because System property of Environment element cannot be set on condition. | |||||
2013-03-15 | WiX: Install to %APPLOCALDATA%\Pandoc in per-user setup. | Fyodor Sheremetyev | 1 | -0/+8 | |
The “Advanced” template installs to %APPLOCALDATA%\Apps\Pandoc by default. | |||||
2013-03-15 | WiX: Set non-empty feature name. | Fyodor Sheremetyev | 1 | -1/+1 | |
It can be displayed in Advanced mode. | |||||
2013-03-15 | WiX: Use APPLICATIONFOLDER property name as required by “Advanced” template. | Fyodor Sheremetyev | 1 | -4/+4 | |
Followup to cd4ad4bc96f864450b374f34f3ae8b0bf4952d87. | |||||
2013-03-15 | WiX: Install shortcut for all users when installing per-machine. Use HKMU to ↵ | Fyodor Sheremetyev | 1 | -8/+7 | |
write registry values to either HKCU or HKLM. http://stackoverflow.com/a/3824949 http://wix.sourceforge.net/manual-wix2/wix_xsd_registry.htm | |||||
2013-03-15 | WiX: Use file as key path for User’s Guide component. | Fyodor Sheremetyev | 1 | -3/+1 | |
2013-03-15 | WiX: Refactoring: Place all components inside single directory structure. | Fyodor Sheremetyev | 1 | -16/+17 | |
For the sake of simplicity. | |||||
2013-03-15 | WiX: Use “Advanced” template that supports selection of per-user or ↵ | Fyodor Sheremetyev | 1 | -2/+5 | |
per-machine mode. http://wix.sourceforge.net/manual-wix3/WixUI_advanced.htm To install for all users installer should be started from admin account. | |||||
2013-03-15 | WiX: Add empty lines for readability. | Fyodor Sheremetyev | 1 | -0/+7 | |
2013-03-15 | WiX: Replace tabs with spaces. | Fyodor Sheremetyev | 1 | -3/+3 | |
2013-03-15 | Add to Git ignores temporary files generate in Windows build. | Fyodor Sheremetyev | 1 | -1/+6 | |
2013-03-13 | Markdown reader: don't lose parentheses in URLs. | John MacFarlane | 3 | -4/+22 | |
Added tests. This fixes a regression from 1.10.x. Closes #786. | |||||
2013-03-12 | Markdown reader: Handle unmatched double quotes in dialogues. | John MacFarlane | 1 | -3/+8 | |
They do not generate a Quoted element; instead, the double quote is just turned into a Str with a curly left quote. This should satisfy the fiction writers. Closes #99 (again). | |||||
2013-03-11 | Fixed spacing bugs involving code block attributes. | John MacFarlane | 2 | -2/+2 | |
Closes #763. | |||||
2013-03-09 | LaTeX reader: citation handling changes. | John MacFarlane | 7 | -8/+128 | |
Previously, a LaTeX citation would always be parsed as a Citation element, with the raw LaTeX in the [Inline] part. Now, the LaTeX citation is parsed as a Citation element only if `--biblio` was specified (i.e. only if there is a nonempty set of references in readerReferences). Otherwise it is parsed as raw LaTeX. This will make it possible to simplify some things in the markdown writer. It also makes the LaTeX reader behave more like the Markdown reader. | |||||
2013-03-08 | Updated RELEASE_CHECKLIST. | John MacFarlane | 1 | -10/+2 | |
2013-03-08 | Rewrote changelog. | John MacFarlane | 1 | -111/+86 | |
2013-03-07 | Updated changelog. | John MacFarlane | 1 | -2/+9 | |
2013-03-07 | googlecode_upload.sh: Use new pandoc-VERSION.msi. | John MacFarlane | 1 | -1/+1 | |
2013-03-07 | Markdown writer: Render citations as pandoc-markdown citations. | John MacFarlane | 2 | -3/+3 | |
Previously citations were rendered as citeproc-formatted citations by default. Now we render them as pandoc citations, e.g. `[@item1]`, unless the `citations` extension is disabled. If you still want formatted citations in your markdown output, use `pandoc -t markdown-citations`. | |||||
2013-03-06 | Bump syb version to < 0.5. | John MacFarlane | 1 | -3/+3 | |
2013-03-06 | Updated changelog. | John MacFarlane | 1 | -0/+13 | |
2013-03-06 | Support :number-lines: in RST code output. | John MacFarlane | 2 | -4/+7 | |
2013-03-06 | LaTeX reader: Better support for Verbatim and minted environments. | John MacFarlane | 1 | -3/+18 | |
Closes #763. | |||||
2013-03-05 | LaTeX reader: Handle language attribute for lstlistings. | John MacFarlane | 2 | -3/+7 | |
Convert it to a highlighting-kate language name. | |||||
2013-03-05 | Hide Text.Pandoc.Highlighting. | John MacFarlane | 5 | -60/+78 | |
* Moved code for translating listings language names to highlighting-kate names and back from LaTeX reader to Highlighting. * Text.Pandoc.Highlighting no longer exposed (API change) * Text.Pandoc.Highlighting exports toListingsLang, fromListingsLang | |||||
2013-03-04 | pandoc.cabal: Require latest h-k, texmath, citeproc-hs, zip-archive. | John MacFarlane | 1 | -6/+6 | |
Pandoc will compile with older versions, but there will be bugs relating to these functions. Making the current versions dependencies is the only way to get packages updated in the distros. | |||||
2013-03-04 | Updated changelog. | John MacFarlane | 1 | -2/+173 | |
It still needs a lot of cleaning up before a release. | |||||
2013-03-04 | LaTeX reader: Read optional attributes in lstlisting environment. | John MacFarlane | 1 | -1/+22 | |
We convert these to pandoc standard names, e.g. "numberLines" for "numbers=left", "startFrom=100" from "firstnumber=100". Still need to add code to convert the language names. | |||||
2013-03-04 | LaTeX writer: Support line numbering with `--listings`. | John MacFarlane | 1 | -2/+8 | |
If "numberLines" class is present, we add "numbers=left"; if "startFrom" is present, we add "firstnumber=". Partially addresses #763. | |||||
2013-03-03 | beamer template: Provide `\Oldincludegraphics` as in LaTeX template. | John MacFarlane | 1 | -7/+12 | |
The template redefines `\includegraphics` to give special treatment for too-wide images. But this causes problems for literal uses of `\includegraphics`. This change allows authors to use `\Oldincludegraphics`, as in the latex template. | |||||
2013-03-03 | EPUB writer: Include html TOC even in epub2. | John MacFarlane | 2 | -15/+25 | |
* The TOC is included in `<spine>`, but `linear` is set to `no` unless the `--toc` option is specified. * Include `<guide>` element in OPF. * This should allow the TOC to be useable in Kindles when converted with kindlegen. * Results validate with epubcheck 3.0 for both epub and epub3 output. * Closes #773. | |||||
2013-03-02 | README: Documented 'unnumbered' class and '-' shortcut. | John MacFarlane | 1 | -1/+14 | |
2013-03-02 | Markdown reader: attribute parsing improvements. | John MacFarlane | 1 | -14/+15 | |
* Cleaned up parsing code. * '-' in an attribute context = '.unnumbered'. The point of this is to provide a way to specify unnumbered headers in non-English documents. | |||||
2013-03-02 | Added test for pipe table with spaces around header lines. | John MacFarlane | 1 | -1/+1 | |
2013-03-02 | Check for tables before line blocks. | John MacFarlane | 1 | -1/+1 | |
Otherwise some pipe tables get treated as line blocks. | |||||
2013-03-02 | Markdown reader: Allow spaces around borders in pipe tables. | John MacFarlane | 1 | -1/+3 | |
Closes #772. | |||||
2013-03-01 | LaTeX reader: Add "fig:" as title for images with captions. | John MacFarlane | 1 | -4/+8 | |
This is needed for them to be rendered as figures. Closes #766. | |||||
2013-03-01 | Textile writer: Removed an unused assignment. | John MacFarlane | 1 | -1/+0 | |
2013-02-28 | Markdown: allow ---- in angle-bracket autolinks. | John MacFarlane | 1 | -2/+7 | |
The uri parser is designed for bare URIs. In angle-bracket contexts, we can be sure that we don't have trailing punctuation. So `<http://openclipart.org/detail/22566/lego-smiley----happy-by-pitr>` should work now. Closes #768. | |||||
2013-02-28 | Markdown writer: Use grid tables when needed, and if enabled. | John MacFarlane | 1 | -1/+31 | |
Closes #740. |