summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Fixed `htmlTag` in HTML reader.John MacFarlane2015-04-17
| | | | | | | Require that `<!` or `<?` be followed by nonspace. This prevents `</ div>` from being parsed as a comment. Closes #1820.
* Docx Writer: Take TOC title from toc-title metadata fieldNikolay Yakimov2015-04-14
|
* Fixed warning.John MacFarlane2015-04-12
|
* Fixed toc depth in RST writer.John MacFarlane2015-04-12
| | | | | | Previously the depth was being rendered as a floating point number with a decimal point. Thanks to Nick Yakimov for noticing this.
* Merge pull request #2072 from lierdakil/latex-reader-cleanupJohn MacFarlane2015-04-12
|\ | | | | LaTeX Reader: Code cleanup
| * LaTeX Reader: Code cleanupNikolay Yakimov2015-04-12
| |
* | Text.Pandoc.PDF: more comprehensible errors on image conversion.John MacFarlane2015-04-12
| | | | | | | | | | | | | | | | | | | | | | | | | | Closes #2067. EPS can't be supported without shelling out to something like ImageMagick, but at least we can avoid mysterious error messages. We now get: pandoc: Unable to convert `circle.eps' for use with pdflatex. ! Package pdftex.def Error: File `circle-eps-converted-to.pdf' not found. which seems more straightforward.
* | ODT Writer: Figure captionsNikolay Yakimov2015-04-12
|/ | | | | | | | | | | | | | | Works pretty much the same as Word writer. Following styles are used for figures: Figure -- for figure with empty caption FigureWithCaption (based on Figure) -- for figure with caption FigureCaption (based on Caption) -- for figure captions Also, TableCaption (based on Caption) is used for table captions. We need FigureWithCaption to set keepWithNext, in order to keep caption with figure.
* Removed redundat import.John MacFarlane2015-04-07
|
* DocBook reader: look inside "info" elements for section titles.John MacFarlane2015-04-07
| | | | Closes #1931.
* RST writer: better handling of raw latex inline.John MacFarlane2015-04-07
| | | | | | | We use `` :raw-latex:`...` `` and add a definition for this role to the template. Closes #1961.
* Markdown Reader: eliminate common subexpressionsJulien Cretel2015-04-07
|
* EPUB writer: Take TOC title from toc-title metadata field.John MacFarlane2015-04-02
|
* Added "noProof" to docx syntax highlighting SourceCode style.John MacFarlane2015-04-01
|
* Merge pull request #2042 from lierdakil/issue1866John MacFarlane2015-03-31
|\ | | | | LaTeX Reader: check for block-level newcommand aliases in blockCommand
| * Latex Reader: Block commands code cleanupNikolay Yakimov2015-03-31
| |
| * Latex Reader: Guard against para starting with inline macroNikolay Yakimov2015-03-30
| |
| * LaTeX Reader: check for block-level newcommand aliases in blockCommandNikolay Yakimov2015-03-30
| |
* | Merge pull request #2035 from lierdakil/issue2031John MacFarlane2015-03-30
|\ \ | | | | | | Docx Writer/Reference: Add keepNext to objects w/ captions
| * | Docx Writer: Add a style to figure imagesNikolay Yakimov2015-03-29
| | | | | | | | | | | | | | | | | | | | | Figures with empty captions use style "Figure" Figures with nonempty captions use style "Figure with Caption", which is based on "Figure", and additionally has keepNext set.
* | | Added CommonMark writer.John MacFarlane2015-03-29
| |/ |/| | | | | | | Added `Text.Pandoc.Writers.CommonMark`, exporting `writeCommonMark`.
* | Merge pull request #2038 from lierdakil/docx-hyphen-settingsJohn MacFarlane2015-03-29
|\ \ | | | | | | Docx Writer: Copy hyphenation settings from reference.docx
| * | Docx Writer: Copy hyphenation settings from reference.docxNikolay Yakimov2015-03-29
| |/
* | Merge pull request #2037 from lierdakil/issue458John MacFarlane2015-03-29
|\ \ | | | | | | Docx Writer: support for --toc option
| * | Docx Writer: Place toc after abstract, rather than beforeNikolay Yakimov2015-03-29
| | |
| * | Docx Writer: Initial support for --toc option (issue #458)Nikolay Yakimov2015-03-29
| |/ | | | | | | Creates a "dirty" TOC at the beginning of document, before abstract
* | Docx Writer: Filter out illegal XML charactersMatthew Pickering2015-03-29
| | | | | | | | Fixes #1992
* | Merge branch 'master' of https://github.com/rootzlevel/pandoc into ↵John MacFarlane2015-03-28
|\ \ | |/ |/| | | | | | | | | rootzlevel-master Conflicts: src/Text/Pandoc/Readers/Org.hs
| * Org reader: Allow image links with non-image targetsHans-Peter Deifel2015-02-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | Updated code example in Text.Pandoc.John MacFarlane2015-03-28
| |
* | Merge branch 'errortype' of https://github.com/mpickering/pandoc into ↵John MacFarlane2015-03-28
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mpickering-errortype Conflicts: benchmark/benchmark-pandoc.hs src/Text/Pandoc/Readers/Markdown.hs src/Text/Pandoc/Readers/Org.hs src/Text/Pandoc/Readers/RST.hs tests/Tests/Readers/LaTeX.hs
| * | Move utility error functions to Text.Pandoc.SharedMatthew Pickering2015-02-18
| | |
| * | Update haddocks and copyright noticesMatthew Pickering2015-02-18
| | |
| * | Update Pandoc.hsMatthew Pickering2015-02-18
| | |
| * | Make safeRead safe.Matthew Pickering2015-02-18
| | | | | | | | | | | | Fixes #1801
| * | Change return type of Txt2Tags readerMatthew Pickering2015-02-18
| | |
| * | Change return type of Textile readerMatthew Pickering2015-02-18
| | |
| * | Change return type of TWiki readerMatthew Pickering2015-02-18
| | |
| * | Change return type of RST readerMatthew Pickering2015-02-18
| | |
| * | Change return type of Org readerMatthew Pickering2015-02-18
| | |
| * | Change return type of OPML readerMatthew Pickering2015-02-18
| | |
| * | Change return type of Native readerMatthew Pickering2015-02-18
| | |
| * | Change return type of Mediawiki readerMatthew Pickering2015-02-18
| | |
| * | Change return type of Markdown readerMatthew Pickering2015-02-18
| | |
| * | Change return type of LaTeX readerMatthew Pickering2015-02-18
| | |
| * | Change return type of Haddock readerMatthew Pickering2015-02-18
| | |
| * | Change return type of HTML readerMatthew Pickering2015-02-18
| | |
| * | Change return type of EPUB readerMatthew Pickering2015-02-18
| | |
| * | Change return type of Docx readerMatthew Pickering2015-02-18
| | |
| * | Change return type of DocBook readerMatthew Pickering2015-02-18
| | |