aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-09Require latest texmath, highlighting-kate.1.12.3John MacFarlane
2014-01-09Updated changelog.John MacFarlane
2014-01-09Minor improvement to exif parser.John MacFarlane
2014-01-09Relaxed version bounds on attoparsec, text, aeson.John MacFarlane
2014-01-09Markdown parser: be more permissive about citation keys.John MacFarlane
Keys may now start with an underscore as well as a letter. Underscores do not count as internal punctuation, but are treated like alphanumerics, so "key:_2008" will work, as it did not before. (This change was necessary to use keys generated by zotero.) Closes #1111, closes #1011.
2014-01-09Better exif parsing, including image resolution.John MacFarlane
This introduces a dependency on binary >= 0.6, but we depend on binary >= 0.5 via zip-archive anyway. Closes #976.
2014-01-08Text.Pandoc.ImageSize: Parse EXIF format JPGs.John MacFarlane
Note: For now we just assign them all 72 dpi. It wasn't clear to me how to extract the resolution information. At least the aspect ratio will be right, and 72 dpi is the most common setting. Closes #976.
2014-01-08fetchItem: Handle image URLs beginning with '//'.John MacFarlane
2014-01-08Added README comment on line breaks in cellsJohn MacFarlane
2014-01-07Updated changelog.John MacFarlane
2014-01-07Markdown reader: Allow hard line breaks in table cells.John MacFarlane
The \-newline form must be used; the two-space+newline form won't work, since in a table cell nearly every line ends with two spaces.
2014-01-07Updated tests for latest texmath.John MacFarlane
2014-01-07Updated changelog.John MacFarlane
2014-01-07Added wmf and emf mime types.John MacFarlane
2014-01-07Fixed small regression in docx writer.John MacFarlane
2014-01-06Increase upper bound for text.John MacFarlane
2014-01-06Increase upper bound on process.John MacFarlane
2014-01-06EPUB writer: Strip out footnotes from toc entries.John MacFarlane
2014-01-06EPUB writer: Avoid duplicate notes when headings contain notes.John MacFarlane
This arose because the headings are copied into the metadata "title" field, and the note gets rendered twice. We strip the note now before putting the heading in "title".
2014-01-06Added note to Interact.hs recommending 'cabal repl'.John MacFarlane
Closes #1110.
2014-01-06HTML writer: Omit footnotes from TOC entries.John MacFarlane
Otherwise we get doubled footnotes when headers have notes!
2014-01-05Removed references to biblio2yaml in installers.John MacFarlane
2014-01-04make_osx_package: Don't hardcode jgm, use whoami.John MacFarlane
2014-01-03The `--bibliography` option now sets the `biblio-files` variable.John MacFarlane
So, if you're using `--natbib` or `--biblatex`, you can just use `--bibliography=foo.bib` instead of `-V bibliofiles=foo`.
2014-01-03Documented biblio-files variableJohn MacFarlane
2014-01-02Merge pull request #1005 from nougad/consistent_bibliographyJohn MacFarlane
Don't add pandoc-citeproc filter if natbib or biblatex is used
2014-01-02RST writer: Ensure no blank line after def in definition list.John MacFarlane
Closes #992.
2014-01-02Pretty: Added nestle. API change, minor version bump to 1.12.3.John MacFarlane
2014-01-02HTML writer: With --toc, headers no longer link to themselves.John MacFarlane
Closes #1081.
2014-01-02Use isHeaderBlock from Shared rather than defining it anew...John MacFarlane
2014-01-02ODT writer: Use mathml for proper rendering of formulas.John MacFarlane
Note: LibreOffice's support for this seems a bit buggy. But it should be better than what we had before.
2014-01-02OpenDocument writer: Fixed RawInline, RawBlock so they don't escape.John MacFarlane
2014-01-02Moved fixDisplayMath from Docx writer to Writer.Shared.John MacFarlane
2014-01-02reference.odt: Tidied styles.xml.John MacFarlane
2014-01-01HTML reader: Parse name/content pairs from meta tags as metadata.John MacFarlane
Closes #1106.
2014-01-01Docx writer: Fixed problem with some modified reference docx files.John MacFarlane
Include `word/_rels/settings.xml.rels` if it exists, as well as other `rels` files besides the ones pandoc generates explicitly.
2013-12-27reference.docx: Include 'FootnoteText' style.John MacFarlane
Otherwise Word ignores the style, even when specified in the pPr element. I believe this should help with issue #901. You should now get 'FootnoteText' as the style of the footnote. You'll have to adjust the style yourself; it's currently just the same as Normal.
2013-12-27Removed old MarkdownTest_1.0.3 directory (not currently used).John MacFarlane
Closes #1104.
2013-12-26Allow temporary 1.2.John MacFarlane
2013-12-23Merge pull request #1103 from nikai3d/patch-1John MacFarlane
fix typos in README
2013-12-23fix typos in READMENicolas Kaiser
2013-12-19Merge pull request #1099 from hdevalence/masterJohn MacFarlane
Minor HLint-suggested changes
2013-12-19HLint: use fromMaybeHenry de Valence
Replace uses of `maybe x id` with `fromMaybe x`.
2013-12-19HLint: use /=Henry de Valence
2013-12-19HLint: redundant parensHenry de Valence
Remove parens enclosing a single element.
2013-12-19HLint: Remove lambdas.Henry de Valence
2013-12-19HLint: use `elem` and `notElem`Henry de Valence
Replaces long conditional chains with calls to `elem` and `notElem`.
2013-12-19HLint: Use allHenry de Valence
Replace `and . map` with `all`.
2013-12-17LaTeX writer: Better treatment of footnotes in tables.John MacFarlane
Notes now appear in the regular sequence, rather than in the table cell. (This was a regression in 1.10.)
2013-12-17LaTeX writer: Factored out function for table cell creation.John MacFarlane