Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-06-28 | New method for producing man pages. | John MacFarlane | 11 | -147/+151 | |
This change adds `--man1` and `--man5` options to pandoc, so pandoc can generate its own man pages. It removes the old overly complex method of building a separate executable (but not installing it) just to create the man pages. The man pages are no longer automatically created in the build process. The man/ directory has been removed. The man page templates have been moved to data/. New unexported module: Text.Pandoc.ManPages. Text.Pandoc.Data now exports readmeFile, and `readDataFile` knows how to find README. Closes #2190. | |||||
2015-06-28 | Version bump to 1.14.1. | John MacFarlane | 1 | -1/+1 | |
Because of the addition of `Options.plainExtensions`. | |||||
2015-06-28 | Fixed regression in CSS parsing with `--self-contained`. | John MacFarlane | 2 | -40/+47 | |
In 1b44acf0c59b70cc63f48a23c6f77e45a982aaf9 we replaced some hackish CSS parsing with css-text, which I thought was a complete CSS parser. It turns out that it is very buggy, which results in lots of things being silently dropped from CSS when `--self-contained` is used (#2224). This commit replaces the use of css-text with a small but more principled css preprocessor, which only removes whitespace and replaces URLs with base 64 data when possible. Closes #2224. | |||||
2015-06-27 | New pandoc.wxs. | John MacFarlane | 1 | -31/+78 | |
This should allow the user to select a per-user or systemwide install. It also shows install location in the list of installed programs. Thanks to @nkalvi. See #2205. | |||||
2015-06-27 | Removed unused import. | John MacFarlane | 1 | -1/+0 | |
2015-06-27 | Textile writer: escape `+` and `-` as entities. | John MacFarlane | 2 | -8/+10 | |
Closes #2225. | |||||
2015-06-27 | Plain writer: don't use symbols for super/subscript. | John MacFarlane | 3 | -18/+14 | |
Simplified code by using plainExtensions from Options. Closes #2237. | |||||
2015-06-27 | Options: Export `plainExtensions`. | John MacFarlane | 1 | -0/+19 | |
These are the extensions used in `plain` output. | |||||
2015-06-27 | Updated latex writer tests for last template change. | John MacFarlane | 3 | -0/+3 | |
2015-06-27 | Updated LaTeX template: `CJKoptions` variable, allow dvipsnames for colors. | John MacFarlane | 1 | -7/+7 | |
Thanks to Xavier Olive. The addition of the `CJKoptions` variable allows one to set (e.g.) a bigger font size for Asian fonts than latin ones. Including dvipsnames allows specifying colors like MidnightBlue for link colors. This brings in a dependency on the color package, but it is a standard package and required anyway by graphics. | |||||
2015-06-26 | Merge pull request #2241 from mb21/docbook-reader-figures | John MacFarlane | 3 | -15/+43 | |
DocBook reader mediaobjects and figures, closes #2184 | |||||
2015-06-21 | DocBook reader mediaobjects and figures, closes #2184 | mb21 | 3 | -15/+43 | |
2015-06-13 | Document CJKmainfont. | John MacFarlane | 1 | -2/+3 | |
2015-06-13 | Added CJKmainfont to latex template (Xavier Olive). | John MacFarlane | 1 | -7/+7 | |
2015-06-13 | epub templates: use 'author.role', not 'author.type'. | John MacFarlane | 1 | -5/+8 | |
2015-06-12 | Updated pandoc.wxs (from @nvalki). | John MacFarlane | 1 | -111/+110 | |
2015-06-09 | Fixed tests/docx/links.docx for new url. | John MacFarlane | 1 | -0/+0 | |
2015-06-09 | Merge pull request #2217 from ousia/master | John MacFarlane | 13 | -14/+14 | |
replace old url with pandoc.org | |||||
2015-06-09 | replace old url with pandoc.org | Pablo RodrÃguez | 13 | -14/+14 | |
2015-06-09 | Amends last commit: don't use https for google charts. | John MacFarlane | 1 | -1/+1 | |
They don't have a certificate. | |||||
2015-06-09 | Use https: for mathjax/katex/google-charts CDNs. | John MacFarlane | 1 | -5/+5 | |
Closes #1920. | |||||
2015-06-09 | Merge pull request #2215 from DigitalPublishingToolkit/icml-crashfix | John MacFarlane | 2 | -20/+27 | |
Fix InDesign crash with URLs containing more than one colon character | |||||
2015-06-09 | Removed relann1.6. | John MacFarlane | 1 | -170/+0 | |
2015-06-09 | Fix InDesign crash with URLs containing more than one colon character | gohai | 2 | -20/+27 | |
Colons are valid characters in URLs, and used e.g. by the Internet Archive's Wayback Machine - a popular resource amongst researchers. When InDesign encounters a HyperlinkURLDestination with more than one colon character in it, it crashes when placing the ICML. (This was tested against CS6.) The IDML specification hints at this requirement in section 6.4.1: "The colon apppears in the Name attribute of the style, but is encoded as %3a when it appears in the Self attribute". Follow this example for all colon characters in URLs. | |||||
2015-06-08 | Bump cmark version to >= 0.3.4. | John MacFarlane | 1 | -1/+1 | |
2015-06-07 | DokuWiki writer: Use proper `<code>` tags for code blocks. | John MacFarlane | 2 | -19/+41 | |
Closes #2213. | |||||
2015-06-04 | HTML reader: allow `<body>` to close `<head>`. | John MacFarlane | 1 | -0/+1 | |
2015-06-03 | Windows msi changes (nkalvi): | John MacFarlane | 2 | -19/+6 | |
* Allow setting of installation path. * Use cleaner wix syntax for setting the path: https://www.firegiant.com/wix/tutorial/com-expression-syntax-miscellanea/environmentally-friendly/ * Show the user what changes, in a new command window. See #2205. | |||||
2015-06-02 | Updated changelog. | John MacFarlane | 1 | -0/+6 | |
2015-06-02 | Version bump to 1.14.0.4, added commonmark template to data files. | John MacFarlane | 1 | -1/+2 | |
2015-06-02 | Added default commonmark template. | John MacFarlane | 1 | -11/+5 | |
2015-06-02 | Misc. fixes to trypandoc html. | John MacFarlane | 1 | -8/+8 | |
2015-06-02 | trypandoc: move Convert button, display raw command. | John MacFarlane | 1 | -3/+9 | |
2015-06-01 | Bump version to 1.14.0.3; updated changelog. | John MacFarlane | 2 | -1/+7 | |
2015-05-31 | Allow compilation with syb 0.5.*. | John MacFarlane | 1 | -3/+3 | |
2015-05-31 | Custom writer: fixed some compiler warnings for ghc < 7.10. | John MacFarlane | 1 | -12/+17 | |
2015-05-31 | Bump to 1.14.0.2, updated changelog. | John MacFarlane | 2 | -1/+5 | |
2015-05-31 | Allow building with hslua 0.4. | John MacFarlane | 2 | -1/+21 | |
2015-05-28 | Updated INSTALL. | John MacFarlane | 1 | -4/+2 | |
2015-05-28 | Updated changelog. | John MacFarlane | 1 | -3/+14 | |
2015-05-28 | Better fix for #2187. | John MacFarlane | 5 | -65/+78 | |
* Reverted kludgy change to make-windows-installer.bat. * Removed make-reference-fiels.hs. * Moved the individual ingredients of reference.docx and reference.odt to the data directory. * Removed reference.docx and reference.odt from data directory. * We now build the reference archives from their ingredient pieces in the docx and odt writers, instead of having a reference.docx or reference.odt intermediary. This should fix #2187. It also simplifies the bulid procedure. The one thing users may notice is different is that you can no longer get the reference.docx or reference.odt using `--print-default-data-file`. Instead, simply generate a docx or odt using pandoc with a blank or minimal input, and use that (or a customized version) with `--reference-docx` or `--reference-odt`. | |||||
2015-05-28 | ConTeXt writer: Add reference anchors to Div with ids. | John MacFarlane | 1 | -1/+7 | |
This is useful for pandoc-citeproc linked citations. | |||||
2015-05-28 | Removed tab chars in Textile reader source. | John MacFarlane | 1 | -2/+2 | |
2015-05-28 | Texinfo writer: Removed tabs from source. | John MacFarlane | 1 | -3/+3 | |
2015-05-28 | More fixes to make-windows-installer for #2187. | John MacFarlane | 1 | -1/+2 | |
2015-05-28 | Updated INSTALL on `embed_data_files`. | John MacFarlane | 1 | -3/+4 | |
2015-05-28 | Updated changelog. | John MacFarlane | 1 | -0/+10 | |
2015-05-28 | Ensure that docx and odt are built in windows installer. | John MacFarlane | 1 | -0/+3 | |
Closes #2187. | |||||
2015-05-28 | Added filepath dependency to make-reference-files. | John MacFarlane | 1 | -0/+1 | |
2015-05-28 | Bump version to 1.14.0.1. | John MacFarlane | 1 | -1/+1 | |