summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Update version to 1.15.1.John MacFarlane2015-08-10
|
* EPUB reader: stop mangling external URLs.John MacFarlane2015-08-10
| | | | | | | Closes #2284. Note the changes to the test suite. In each case, a mangled external link has been fixed, so these are all positive.
* Allow latest criterion version.John MacFarlane2015-08-10
|
* Docx writer: Moved invalid character stripping to `formattedString`.John MacFarlane2015-08-10
| | | | | | | | This avoids an inefficient generic traversal. Updates f3aa03e. Closes #2356.
* LaTeX template: move abstract to before `\maketitle`.John MacFarlane2015-08-09
| | | | | | See http://tex.stackexchange.com/questions/139469/to-have-abstract-in-the-docu ment-class-revtex
* Text.Pandoc: disable auto_identifiers for epub.John MacFarlane2015-08-08
| | | | | The epub writer inserts its own auto identifiers; this is more complex due to splitting into "chapter" files.
* Updated html reader for new automatic header attributes.John MacFarlane2015-08-08
|
* MediaWiki reader: handle unquoted table attributes.John MacFarlane2015-08-08
| | | | Closes #2355.
* Revert "Travis: call test program directly rather than by cabal."John MacFarlane2015-08-08
| | | | This reverts commit 8bcaea5bd18c4dc26319d9ee9cb5c39de0ba2ed3.
* Travis: call test program directly rather than by cabal.John MacFarlane2015-08-08
|
* Clarified what is "out of scope" in README and CONTRIBUTING.md.John MacFarlane2015-08-08
|
* HTML reader: add auto identifiers if not present on headers.John MacFarlane2015-08-08
| | | | | | | | This makes TOC linking work properly. The same thing needs to be done to the org reader to fix #2354; in addition, `Ext_auto_identifiers` should be added to the list of default extensions for org in Text.Pandoc.
* DocBook reader: handle informalexample.John MacFarlane2015-08-08
| | | | | | It is parsed into a Div with class `informalexample`. Closes #2319.
* LaTeX reader: Implement \Cite.John MacFarlane2015-08-08
| | | | See #2335.
* Merge pull request #2327 from hftf/list-styleJohn MacFarlane2015-08-07
|\ | | | | HTML Reader: Correctly parse inline list-style(-type) for <ol>
| * HTML Reader: Detect font-variant with pickStyleAttrPropsOphir Lifshitz2015-07-27
| |
| * HTML Reader: Test <ol> type, class, and inline list-style(-type) CSSOphir Lifshitz2015-07-24
| |
| * HTML Reader: Parse <ol> type, class, and inline list-style(-type) CSSOphir Lifshitz2015-07-24
| |
* | Clarify docs on block quotes.John MacFarlane2015-08-06
| | | | | | | | | | | | The space after `>` is optional. Closes #2346.
* | Merge pull request #2338 from trofi/masterJohn MacFarlane2015-08-01
|\ \ | | | | | | fix build failure with --flags=-https
| * | fix build failure with --flags=-httpsSergei Trofimovich2015-07-30
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The issue was originally reported by CasperVector as https://github.com/gentoo-haskell/gentoo-haskell/issues/427 Mainfests itself as a builg failure full of missing zip-archive names: src/Text/Pandoc/Shared.hs:756:49: Not in scope: type constructor or class ‘Archive’ src/Text/Pandoc/Shared.hs:777:38: Not in scope: ‘toEntry’ src/Text/Pandoc/Shared.hs:786:19: Not in scope: ‘toArchive’ Perhaps you meant ‘mbArchive’ (line 778) Included Codec.Archive.Zip unconditionally. Signed-off-by: Sergei Trofimovich <siarheit@google.com>
* | Pipe tables: allow indented columns.John MacFarlane2015-07-27
| | | | | | | | | | | | | | | | | | | | Previously the left-hand column could not start with 4 or more spaces indent. This was inconvenient for right-aligned left columns. Note that the first (header column) must still have 3 or fewer spaces indentation, or the table will be treated as an indented code block.
* | README: Added space after backslash in image example.John MacFarlane2015-07-26
| | | | | | | | See #2329.
* | Merge pull request #1689 from kuribas/masterJohn MacFarlane2015-07-25
|\ \ | | | | | | Use '=' instead of '#' for atx-style headers in markdown+lhs.
| * | Use '=' instead of '#' for atx-style headers in markdown+lhs.Kristof Bastiaensen2014-10-14
| | |
* | | Updated README and cabal description for ODT reader.John MacFarlane2015-07-23
| | |
* | | Added odt readerMarLinn2015-07-23
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fully implemented features: * Paragraphs * Headers * Basic styling * Unordered lists * Ordered lists * External Links * Internal Links * Footnotes, Endnotes * Blockquotes Partly implemented features: * Citations Very basic, but pandoc can't do much more * Tables No headers, no sizing, limited styling
* | Updated tests and removed a skipSpaces....John MacFarlane2015-07-23
| | | | | | | | | | we no longer need it with the change to toKey, and it is expensive to skip spaces after every inline.
* | Parsing: toKey: strip off outer brackets.John MacFarlane2015-07-23
| | | | | | | | | | | | | | | | | | | | | | This makes keys with extra space at the beginning and end work: e.g. [foo]: bar [ foo ] will now be a link to bar (it wasn't before).
* | Merge pull request #2323 from hftf/implicit-header-refsJohn MacFarlane2015-07-23
|\ \ | | | | | | Fix implicit header refs for headers with extra spaces
| * | Markdown Reader: Add basic tests for each header styleOphir Lifshitz2015-07-23
| | |
| * | Markdown Reader: Add implicit header ref tests for headers with spacesOphir Lifshitz2015-07-23
| | |
| * | Markdown Reader: Skip spaces in headersOphir Lifshitz2015-07-23
| | |
* | | LaTeX reader: support abstract environment.John MacFarlane2015-07-23
|/ / | | | | | | The abstract populates an "abstract" metadata field.
* | Fix regression: allow HTML comments containing `--`.John MacFarlane2015-07-21
| | | | | | | | | | | | | | Technically this isn't allowed in an HTML comment, but we've always allowed it, and so do most other implementations. It is handy if e.g. you want to put command line arguments in HTML comments.
* | Merge pull request #2318 from infotroph/infotroph-readme-patch2John MacFarlane2015-07-21
|\ \ | | | | | | List all styles in manual for --reference-docx
| * | List all styles in manual for --reference-docxChris Black2015-07-21
| | |
* | | Use newManager instead of withManager in recent http-client.John MacFarlane2015-07-21
| | | | | | | | | | | | This avoids a deprecation warning.
* | | DZSlides: Add `role="note"` for speaker notes.John MacFarlane2015-07-21
| | | | | | | | | | | | Closes #1693.
* | | HTML reader: handle type attribute on ol.John MacFarlane2015-07-21
|/ / | | | | | | | | | | E.g. `<ol type="i">`. Closes #2313.
* | LaTeX reader: properly handle booktabs lines.John MacFarlane2015-07-21
| | | | | | | | | | | | | | Lines aren't part of the pandoc table model, but we can just ignore them. Closes #2307.
* | Don't capitalize header links in man page.John MacFarlane2015-07-21
| | | | | | | | Also regenerated man page from latest README.
* | Fixed some internal links in README.John MacFarlane2015-07-21
| | | | | | | | Closes #2309.
* | Removed unneeded import.John MacFarlane2015-07-16
| |
* | LaTeX writer: Fixed detection of 'chapters' from template.John MacFarlane2015-07-16
| | | | | | | | | | | | | | If a documentclass isn't specified in metadata, but the template has a hardwired bookish documentclass, act as if `--chapters` was used. This was the default in earlier versions, but it has been broken for a little while.
* | Merge pull request #2303 from hftf/h6John MacFarlane2015-07-15
|\ \ | | | | | | Add missing Heading 6 style in reference Docx
| * | Docx Reader: Updated headers testOphir Lifshitz2015-07-15
| | | | | | | | | | | | | | | | | | | | | Replaced styles.xml in headers.docx with pandoc's current styles.xml, which contains styles for Heading 1 through 6. Added Heading 4 through 7 to the test document. Note that Heading 7 is not parsed as a Heading because there is no Heading 7 style.
| * | Reference Docx: Add missing Header 6 style (steel blue)Ophir Lifshitz2015-07-15
| | | | | | | | | | | | Based on Header 4 (bold, steel blue) and Header 5 (italic, steel blue)
| * | Reference Docx: Correct outlineLvl for Header stylesOphir Lifshitz2015-07-15
| | | | | | | | | | | | Not sure if this actually affects anything
* | | Added section on REPL to CONTRIBUTING.md.John MacFarlane2015-07-15
| | |