Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-03-01 | Started moving StyleMap out of writer code | Nikolay Yakimov | 3 | -20/+137 | |
2015-02-25 | Markdown reader: check for tex macros after indented code. | John MacFarlane | 1 | -3/+3 | |
Closes #1973. | |||||
2015-02-25 | Org reader: Allow image links with non-image targets | Hans-Peter Deifel | 1 | -1/+1 | |
Org-Mode's own html exporter converts the following org link: [[http://example.com][https://www.haskell.org/static/img/logo.png]] to <a href="http://example.com"> <img src="https://www.haskell.org/static/img/logo.png" alt="logo.png" /> </a> but pandoc generates: <a href="http://example.com"> <a href="https://www.haskell.org/static/img/logo.png" class="uri"> https://www.haskell.org/static/img/logo.png </a> </a> which is useless. With this patch, it generates: <a href="http://example.com"> <img src="https://www.haskell.org/static/img/logo.png" alt="" /> </a> | |||||
2015-02-21 | Docx reader: Minor cleanup. | Jesse Rosenthal | 1 | -3/+4 | |
The previous commits had some code repetition. This just makes it a bit easier to read. | |||||
2015-02-21 | Docx reader: allow sub/superscript verbatims. | Jesse Rosenthal | 1 | -1/+6 | |
Verbatim usually shuts off all other run styles, but we don't want it to shut off sub/superscript. | |||||
2015-02-19 | Docx reader: Allow numbering in the style file. | Jesse Rosenthal | 1 | -21/+33 | |
This allows inherited styles with numbering (lists). It works like this: 1. check to see if the style has numbering info. 2. if the paragraph has explicit numbering info in the doc that takes precedence. 3. if not we use the numbering info in the style, if it's there. 4. otherwise normal paragraph. We no longer assume it's not a numbering element if it doesn't have an explicit level---we just set that level to 1. (In the style files, the examples I've seen don't have that explicit level.) | |||||
2015-02-18 | Move utility error functions to Text.Pandoc.Shared | Matthew Pickering | 1 | -1/+1 | |
2015-02-18 | Change return type of Txt2Tags reader | Matthew Pickering | 1 | -2/+3 | |
2015-02-18 | Change return type of Textile reader | Matthew Pickering | 1 | -1/+2 | |
2015-02-18 | Change return type of TWiki reader | Matthew Pickering | 1 | -2/+3 | |
2015-02-18 | Change return type of RST reader | Matthew Pickering | 1 | -2/+4 | |
2015-02-18 | Change return type of Org reader | Matthew Pickering | 1 | -4/+6 | |
2015-02-18 | Change return type of OPML reader | Matthew Pickering | 1 | -20/+28 | |
2015-02-18 | Change return type of Native reader | Matthew Pickering | 1 | -26/+14 | |
2015-02-18 | Change return type of Mediawiki reader | Matthew Pickering | 1 | -5/+5 | |
2015-02-18 | Change return type of Markdown reader | Matthew Pickering | 1 | -25/+33 | |
2015-02-18 | Change return type of LaTeX reader | Matthew Pickering | 1 | -7/+4 | |
2015-02-18 | Change return type of Haddock reader | Matthew Pickering | 1 | -3/+5 | |
2015-02-18 | Change return type of HTML reader | Matthew Pickering | 1 | -5/+12 | |
2015-02-18 | Change return type of EPUB reader | Matthew Pickering | 1 | -17/+20 | |
2015-02-18 | Change return type of Docx reader | Matthew Pickering | 1 | -8/+11 | |
2015-02-18 | Change return type of DocBook reader | Matthew Pickering | 1 | -11/+16 | |
2015-02-18 | Factor out "returnState" into Parsing module | Matthew Pickering | 2 | -15/+2 | |
2015-02-18 | HLint changes | Matthew Pickering | 1 | -82/+76 | |
2015-02-18 | Remove F Monad from Markdown reader | Matthew Pickering | 1 | -312/+307 | |
2015-02-18 | Remove F monad from Parsing | Matthew Pickering | 1 | -2/+1 | |
2015-02-18 | Changed parseWithWarnings to the more general returnWarnings parser transformer | Matthew Pickering | 1 | -1/+1 | |
2015-02-18 | Remove F monad from Org Reader. | Matthew Pickering | 1 | -227/+212 | |
2015-02-13 | Docx reader: Handle lists correctly inside table cells. | Jesse Rosenthal | 1 | -1/+3 | |
Previously we didn't transform lists inside table cells. | |||||
2015-02-02 | Textile reader: table improvements. | John MacFarlane | 1 | -16/+14 | |
* Handle newlines in cells. * Handle empty cells. * Closes #1919. | |||||
2015-01-25 | Merge pull request #1885 from mb21/html-reader-tables | John MacFarlane | 1 | -11/+22 | |
fixes HTML Reader: tables | |||||
2015-01-25 | fixes #1859 HTML Reader table parsing | mb21 | 1 | -11/+22 | |
2015-01-22 | LaTeX reader: don't limit includes to .tex extension. | John MacFarlane | 1 | -2/+8 | |
Previously `\input` and `\include` would only work if the included files had the extension `.tex`. This change relaxes that restriction, though if the extension is not `.tex`, it must be given explicitly in the `\input` or `\include`. Closes #1882. | |||||
2015-01-21 | Docx: Parse images in deprecated vml format. | Jesse Rosenthal | 1 | -0/+10 | |
Some older versions of word use vml (vector markup language) and put their images in a "v:imagedata" tag inside a "w:pict". We read those as we read the more modern "blip" inside a "w:drawing". Note that this does not mean the reader knows anything about vml. It just looks for a `v:imagdata`. It's possible that, with more complicated uses of images in vml, it won't do the right thing. | |||||
2015-01-05 | ghc 7.10.1 RC1 requires FlexibleContexts ↵ | Mark Wright | 1 | -1/+1 | |
https://ghc.haskell.org/trac/ghc/wiki/Migration/7.10#Inferredtype-signaturesnowmayrequiretoenableFlexibleContextsGADTsorTypeFamilies | |||||
2015-01-05 | ghc 7.10.1 RC1 requires FlexibleContexts ↵ | Mark Wright | 1 | -1/+2 | |
https://ghc.haskell.org/trac/ghc/wiki/Migration/7.10#Inferredtype-signaturesnowmayrequiretoenableFlexibleContextsGADTsorTypeFamilies ; ghc 7.10.1 RC1 requires specifying the type of String literals https://ghc.haskell.org/trac/ghc/wiki/Migration/7.10#GHCsaysNoinstanceforFoldable...arisingfromtheuseof... | |||||
2015-01-05 | ghc 7.10.1 RC1 requires FlexibleContexts ↵ | Mark Wright | 1 | -3/+4 | |
https://ghc.haskell.org/trac/ghc/wiki/Migration/7.10#Inferredtype-signaturesnowmayrequiretoenableFlexibleContextsGADTsorTypeFamilies ; ghc 7.10.1 RC1 requires specifying the type of String literals https://ghc.haskell.org/trac/ghc/wiki/Migration/7.10#GHCsaysNoinstanceforFoldable...arisingfromtheuseof... | |||||
2015-01-05 | ghc 7.10.1 RC1 requires specifying the type of String literals ↵ | Mark Wright | 1 | -2/+2 | |
https://ghc.haskell.org/trac/ghc/wiki/Migration/7.10#GHCsaysNoinstanceforFoldable...arisingfromtheuseof... | |||||
2015-01-05 | Allow haddock-library 1.2, by calling the ↵ | Mark Wright | 1 | -1/+7 | |
Documentation.Haddock.Types.MetaDoc record accessor function _doc :: MetaDoc mod id -> DocH mod id | |||||
2015-01-01 | LaTeX reader: handle `tabular*` environment. | John MacFarlane | 1 | -3/+5 | |
This change allows pandoc not to choke on the table-width parameter of `tabular*`. Note that the table width is not actually parsed or taken into account, but this should give tolerable results in many cases. Closes #1850. | |||||
2014-12-19 | Added Text.Pandoc.Compat.Locale to assist with transition to time 1.5. | John MacFarlane | 1 | -2/+1 | |
2014-12-16 | LaTeX reader: parse math environments as inline when possible. | John MacFarlane | 1 | -15/+42 | |
Closes #1821. | |||||
2014-12-15 | LaTeX reader: parse label after caption into a span... | John MacFarlane | 1 | -4/+11 | |
instead of inserting an additional paragraph of bracketed text. Closes #1747. | |||||
2014-12-15 | Merge branch 'patch-1' of https://github.com/Wikiwide/pandoc into ↵ | John MacFarlane | 1 | -0/+2 | |
Wikiwide-patch-1 Conflicts: src/Text/Pandoc/Readers/LaTeX.hs | |||||
2014-12-15 | Don't treat a citation as a reference link label. | John MacFarlane | 1 | -3/+4 | |
Closes #1763. | |||||
2014-12-15 | LaTeX reader: better handling of `\noindent` and `\greektext`. | John MacFarlane | 1 | -1/+3 | |
Closes #1783. | |||||
2014-12-15 | Improved texorpdfstring patch #1148. | John MacFarlane | 1 | -0/+1 | |
* Make LaTeX reader recognize texorpdfstring. * Don't use texorpdfstring unless it's actually needed. * Fix tests. | |||||
2014-12-15 | Merge pull request #1805 from bergey/rst | John MacFarlane | 2 | -40/+63 | |
RST Reader - Improved Role Support | |||||
2014-12-14 | DocBook readers: Include id on section headers. | John MacFarlane | 1 | -1/+2 | |
Closes #1818. | |||||
2014-12-14 | DocBook reader: Handle menuchoice elements better. | John MacFarlane | 1 | -4/+11 | |
They are now rendered with a `>` between them. Closes #1817. |