Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-06-03 | Docx writer: Changed abstractNumId numbering scheme. | John MacFarlane | 1 | -3/+3 | |
Now the minimum id used by pandoc is 990. All ids start with "99". This gives some room for a reference.docx to define numbering styles. Note: this is not yet possible, since pandoc generates numbering.xml entirely on its own. | |||||
2014-06-03 | Docx writer: Simplified abstractNumId numbering. | John MacFarlane | 1 | -19/+30 | |
Instead of sequential numbering, we assign numbers based on the list marker styles. This simplifies some of the code and should make it easier to modify numbering in the future. | |||||
2014-06-03 | Version bump to 1.12.5. | John MacFarlane | 1 | -1/+1 | |
2014-06-03 | Templates: use ordNum instead of ord. | John MacFarlane | 1 | -3/+3 | |
Closes #1022. | |||||
2014-06-03 | Shared: Added ordNub. | John MacFarlane | 1 | -0/+9 | |
API change (adds export). | |||||
2014-06-02 | Docx writer: Create overrides per-image for media/ in ref docx. | John MacFarlane | 1 | -13/+8 | |
This should be somewhat more robust and cover more types of images. | |||||
2014-06-02 | Docx writer: Improved entryFromArchive to avoid parse. | John MacFarlane | 1 | -2/+3 | |
No need to parse the XML if we're just going to render it right away! | |||||
2014-06-02 | Docx writer: Make images work in reference.docx headers/footers. | John MacFarlane | 1 | -8/+20 | |
* All media from reference.docx are copied into result. * Added defaults for common image types to [Content Types]. * Avoided redundant XML parse + write for entries taken over from reference.docx, for better performance. | |||||
2014-06-02 | Require latest texmath. Closes #1319. | John MacFarlane | 1 | -1/+1 | |
This allows `\left` to be used with `]`, `)`, etc. | |||||
2014-06-01 | Templates: Fail informatively on template syntax errors. | John MacFarlane | 2 | -33/+38 | |
With the move from parsec to attoparsec, we lost good error reporting. In fact, since we weren't testing for end of input, malformed templates would fail silently. Here we revert back to Parsec for better error messages. | |||||
2014-06-01 | Updated tests for c8bc70a6bb12e0fbfadadb9480efafb3be4f11a5. | John MacFarlane | 2 | -0/+2 | |
2014-06-01 | Updated README on reference.docx. | John MacFarlane | 1 | -1/+2 | |
2014-06-01 | Docx writer: Improved handling of headers/footers. | John MacFarlane | 1 | -52/+53 | |
2014-06-01 | Removed header1.xml, footer1.xml from reference.docx. | John MacFarlane | 1 | -0/+0 | |
2014-06-01 | Docx writer: Header and footer are now carried over from reference.docx. | John MacFarlane | 2 | -16/+38 | |
2014-06-01 | Minor code reformat. | John MacFarlane | 1 | -5/+5 | |
2014-06-01 | LaTeX/Beamer templates: remove conditional around date. | John MacFarlane | 1 | -5/+13 | |
Closes #1321. | |||||
2014-05-31 | Docx writer: Take over document formatting from reference.docx. | John MacFarlane | 1 | -17/+30 | |
This includes margins, page size, page orientation. | |||||
2014-05-28 | Windows installer: Use one install command for pandoc, pandoc-citeproc. | John MacFarlane | 1 | -3/+1 | |
2014-05-28 | PDF writer: Fixed treatment of data uris for images. | John MacFarlane | 2 | -3/+4 | |
Closes #1062. | |||||
2014-05-28 | Windows install script: force install of pandoc-citeproc. | John MacFarlane | 1 | -1/+1 | |
2014-05-28 | Merge pull request #1302 from tarleb/inline-latex | John MacFarlane | 3 | -1/+59 | |
Org reader: support for inline LaTeX | |||||
2014-05-27 | Markdown reader: Handle `c++` and `objective-c` as language identifiers | John MacFarlane | 1 | -1/+8 | |
in github-style fenced blocks. Closes #1318. Note: This is special-case handling of these two cases. It would be good to do something more systematic. | |||||
2014-05-27 | Require latest highlighting-kate. Fixes #1317. | John MacFarlane | 1 | -3/+3 | |
2014-05-27 | Markdown reader: inline math must have nonspace before final `$`. | John MacFarlane | 3 | -4/+12 | |
Closes #1313. | |||||
2014-05-27 | Require latest zip-archive. | John MacFarlane | 1 | -1/+1 | |
This has fixes for unicode path names. Note that compiling pandoc against zip-archive 0.2.3 or 0.2.3.1 will lead to invalid zip containers, causing LibreOffice (e.g.) to regard ODTs as corrupt. | |||||
2014-05-27 | Fixed documentation of attributes. Closes #1315. | John MacFarlane | 1 | -4/+8 | |
2014-05-27 | Updated date on README. | John MacFarlane | 1 | -1/+1 | |
2014-05-20 | Org reader: support for inline LaTeX | Albert Krewinkel | 3 | -1/+59 | |
Inline LaTeX is now accepted and parsed by the org-mode reader. Both, math symbols (like \tau) and LaTeX commands (like \cite{Coffee}), can be used without any further escaping. | |||||
2014-05-19 | EPUB writer: Handle multiple dates with OPF `event` attributes. | John MacFarlane | 1 | -9/+38 | |
Note: in EPUB3 we can have only one dc:date, so only the first one is used. | |||||
2014-05-19 | Avoid `import Prelude hiding (catch)`. | John MacFarlane | 2 | -9/+4 | |
See #1309. | |||||
2014-05-19 | Merge pull request #1309 from michaelt/patch-1 | John MacFarlane | 1 | -1/+0 | |
no need to hide 'catch' | |||||
2014-05-18 | Removed dependency on conduit. | John MacFarlane | 3 | -14/+16 | |
* http-conduit flag is now https. * Instead of http-conduit, we depend on http-client and http-client-tls. | |||||
2014-05-17 | no need to hide 'catch' | Michael Thompson | 1 | -1/+0 | |
This doesn't normally cause a problem because of some ghc workaround special to this case, but I was able to trigger an error with a complicated mixture of sandboxing, directing `cabal` to a locally installed ghc, and something else. `catch` isn't actually used in the file, so it seems it might as well go. | |||||
2014-05-16 | Windows build script: add -windows to file name. | John MacFarlane | 1 | -1/+1 | |
2014-05-16 | make_osx_package: Call zip file pandoc-VERSION-osx.zip. | John MacFarlane | 1 | -2/+2 | |
The zip should not be named SOMETHING.pkg.zip, or OSX finder will extract it into a folder named SOMETHING.pkg, which it will interpret as a defective package. Closes #1308. | |||||
2014-05-16 | Merge pull request #1307 from palday/master | John MacFarlane | 1 | -2/+2 | |
fixed escape for literal paragraph | |||||
2014-05-16 | Fixed travis build to install alex for GHC 7.8.2. | John MacFarlane | 1 | -1/+1 | |
2014-05-16 | travis: Test with ghc 7.8.2 rather than 7.8.1. | John MacFarlane | 2 | -2/+2 | |
2014-05-16 | fixed escape for literal paragraph | Phillip Alday | 1 | -2/+2 | |
2014-05-16 | Merge pull request #1306 from snoyberg/patch-1 | John MacFarlane | 1 | -1/+1 | |
Allow scientific 0.3 | |||||
2014-05-16 | Allow scientific 0.3 | Michael Snoyman | 1 | -1/+1 | |
2014-05-15 | Require highlighting-kate 0.5.8.1. | John MacFarlane | 1 | -3/+3 | |
0.5.8 has a serious bug that causes error failure with ocaml and fsharp. | |||||
2014-05-15 | EPUB writer: Fixed regression on cover image. | John MacFarlane | 1 | -5/+5 | |
In 1.12.4 and 1.12.4.2, the cover image would not appear properly, because the metadata id was not correct. This was introduced by the fix to #1254. Now we derive the id from the actual cover image filename, which we preserve rather than using "cover-image." | |||||
2014-05-14 | Fixed 034cd4bb214a30de3739c756eab428d5fbe617cc. | John MacFarlane | 1 | -1/+2 | |
Preserve directory structure for pkg. | |||||
2014-05-14 | Updated changelog. | John MacFarlane | 1 | -3/+21 | |
2014-05-14 | Bump version to 1.12.4.2. | John MacFarlane | 1 | -1/+1 | |
2014-05-14 | osx package: Include uninstall script in zip file. | John MacFarlane | 1 | -2/+1 | |
Don't put it in $PREFIX/bin as before. | |||||
2014-05-14 | Merge pull request #1293 from tarleb/typo | John MacFarlane | 1 | -2/+1 | |
Process: Fix minor typo in pipeProcess' docs | |||||
2014-05-14 | Merge pull request #1296 from DanStaal/master | John MacFarlane | 1 | -20/+18 | |
Code cleanup and debug. |