summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Added man page source files to extra-source-files.John MacFarlane2015-07-02
|
* Bump version to 1.15.0.1, update changelog.John MacFarlane2015-07-01
|
* Install man pages as part of cabal 'copy' phase.John MacFarlane2015-07-01
|
* Generate man page in cabal build process and include in data/.John MacFarlane2015-07-01
| | | | | | | | The pandoc.1 man page is generated automatically after the cabal build process. It goes in `data/pandoc.1`. It can be obtained by the user who installs pandoc via cabal thus: pandoc --print-default-data-file pandoc.1 > pandoc.1
* Don't use MANDIR in make_deb and make_osx_package.John MacFarlane2015-07-01
|
* Always rebuild man page in making deb and osx package.John MacFarlane2015-07-01
|
* Updated make_osx_package.sh for new man page method.John MacFarlane2015-07-01
|
* Updated make_deb.sh for new man page method.John MacFarlane2015-07-01
|
* Updated changelog.John MacFarlane2015-07-01
|
* ConTeXt: use `\goto` for internal links.John MacFarlane2015-07-01
|
* Ignore sandbox on 'make quick'John MacFarlane2015-07-01
|
* Merge pull request #2255 from mchladek/odt_linebreakJohn MacFarlane2015-07-01
|\ | | | | Fix #2254 : OpenDocument writer adds space with hard line break
| * Do not add a carriage return after a hard line break in OpenDocument writer ↵Michael Chladek2015-07-01
| | | | | | | | and reflect change in tests.
* | ConTeXt writer: Added a % at end for `\reference` to avoid spurious space.John MacFarlane2015-07-01
| |
* | New method for building man pages.John MacFarlane2015-07-01
|/ | | | | | | | | | | | | | | | | | + Removed `--man1`, `--man5` options (breaking change). + Removed `Text.Pandoc.ManPages` module (breaking API change). + Version bump to 1.15 because of the breaking changes, even though they involve features that have only been in pandoc for a day. + Makefile target for `man/man1/pandoc.1`. This uses pandoc to create the man page from README using a custom template and filters. + Added `man/` directory with template and filters needed to build man page. + We no longer have two man pages: pandoc.1 and pandoc_markdown.5. Now there is just pandoc.1, which has all the content from README. This change was needed because of the extensive cross-references between parts of the README. + Removed old `data/pandoc.1.template` and `data/pandoc_markdown.5.template`.
* Fixed man page building in make_osx_package.sh.John MacFarlane2015-06-30
|
* Updated changelog.John MacFarlane2015-06-30
|
* README: Added Lars-Dominik Braun as contributorJohn MacFarlane2015-06-29
|
* make_deb.sh: Use pandoc to create man pages.John MacFarlane2015-06-29
|
* make_osx_package.sh: Create man pages using pandoc.John MacFarlane2015-06-29
|
* Added download_stats target to Makefile.John MacFarlane2015-06-29
|
* Merge pull request #2250 from PromyLOPh/rsttargetJohn MacFarlane2015-06-29
|\ | | | | Fix RST reference names with special characters
| * Fix RST reference names with special charactersLars-Dominik Braun2015-06-29
| |
* | LaTeX reader: Allow `_` and `^` as regular inline text.John MacFarlane2015-06-29
| | | | | | | | | | | | | | | | Normally these will cause an error in LaTeX, but there are contexts (e.g. `alltt` environments) where they are okay. Now that we aren't treating them as super/subscript outside of math mode, it seems okay to parse them as regular text.
* | LaTeX reader: don't parse `_`,`^` as super/sub outside math mode.John MacFarlane2015-06-29
| |
* | Windows installer: use AppData\Local\Pandoc by default.John MacFarlane2015-06-29
|/ | | | | | | Not AppData\Local\Apps\Pandoc as wix was now doing. It is going to be easier if we don't change the install directory so that users end up with two versions.
* Removed unneeded import.John MacFarlane2015-06-28
|
* Added a needed import in Shared.John MacFarlane2015-06-28
|
* Make sure we use dist version of reference.docx for some things.John MacFarlane2015-06-28
| | | | | | | Taking some values from a user-supplied reference.docx tends to lead to corruption. This fixes a regression from the last release. Closes #2249.
* pandoc.wxs: removed line breaks in RegistryValue.John MacFarlane2015-06-28
| | | | See #2205
* Let reference.docx/odt behave as if they are virtual data files.John MacFarlane2015-06-28
| | | | | | | | | | | | | | | Now they are constructed on the fly from their components, but we now allow them to be printed with `--print-default-data-file` and to override the defaults if placed in the user data directory. Shared now exports getDefaultReferenceDocx and getDefaultReferenceODT (API change). These functions have been removed from the Docx and ODT writers. Shared.readDataFile has been modified so that requests to read a reference.odt or reference.docx will use these functions to generate the files.
* Minor fixes to previous commit.John MacFarlane2015-06-28
| | | | | | | | | * Instead of defining readmeFile in Text.Pandoc.Data (which we forgot to export anyway), we simply add a record for "README" to the `dataFiles` lookup table. This allows simplifying some of the code for `readDefaultDataFile` in SHared. * As a bonus, `pandoc --print-default-data-file README` now works.
* New method for producing man pages.John MacFarlane2015-06-28
| | | | | | | | | | | | | | | | | | | | | 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.
* Version bump to 1.14.1.John MacFarlane2015-06-28
| | | | Because of the addition of `Options.plainExtensions`.
* Fixed regression in CSS parsing with `--self-contained`.John MacFarlane2015-06-28
| | | | | | | | | | | | | | 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.
* New pandoc.wxs.John MacFarlane2015-06-27
| | | | | | | | 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.
* Removed unused import.John MacFarlane2015-06-27
|
* Textile writer: escape `+` and `-` as entities.John MacFarlane2015-06-27
| | | | Closes #2225.
* Plain writer: don't use symbols for super/subscript.John MacFarlane2015-06-27
| | | | | | Simplified code by using plainExtensions from Options. Closes #2237.
* Options: Export `plainExtensions`.John MacFarlane2015-06-27
| | | | These are the extensions used in `plain` output.
* Updated latex writer tests for last template change.John MacFarlane2015-06-27
|
* Updated LaTeX template: `CJKoptions` variable, allow dvipsnames for colors.John MacFarlane2015-06-27
| | | | | | | | | | | 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.
* Merge pull request #2241 from mb21/docbook-reader-figuresJohn MacFarlane2015-06-26
|\ | | | | DocBook reader mediaobjects and figures, closes #2184
| * DocBook reader mediaobjects and figures, closes #2184mb212015-06-21
|/
* Document CJKmainfont.John MacFarlane2015-06-13
|
* Added CJKmainfont to latex template (Xavier Olive).John MacFarlane2015-06-13
|
* epub templates: use 'author.role', not 'author.type'.John MacFarlane2015-06-13
|
* Updated pandoc.wxs (from @nvalki).John MacFarlane2015-06-12
|
* Fixed tests/docx/links.docx for new url.John MacFarlane2015-06-09
|
* Merge pull request #2217 from ousia/masterJohn MacFarlane2015-06-09
|\ | | | | replace old url with pandoc.org