summaryrefslogtreecommitdiff
path: root/man
Commit message (Collapse)AuthorAge
* Name change OSX -> macOS (#3869)ickc2017-08-23
| | | | | | | | | | | | * Name change OSX -> macOS fix commit c96b64e This commit finishes remaining osx to macOS change, as well as replacing MacOS with macOS. The reason for the later one is because the "correct" casing of macOS is like that. Apple styles it to looks like iOS, watchOS, tvOS, etc. And unfortunately they all start with a lowercase letter, making propercasing (or even title-casing) odd. * fix casing of Linux, UNIX, and Windows
* slidy uses https instead of http (#3848)ickc2017-08-17
| | | grep -rl 'http://www.w3.org/Talks/Tools/Slidy2' . | xargs sed -i 's/http:\/\/www\.w3\.org\/Talks\/Tools\/Slidy2/https:\/\/www\.w3\.org\/Talks\/Tools\/Slidy2/g'
* Added TikiWiki reader (#3800)rlpowell2017-07-21
| | | | | | | Added TikiWiki reader, including tests and documentation. It's probably not *complete*, but it works pretty well, handles all the basics (and some not-so-basics).
* Updated man page.John MacFarlane2017-06-04
|
* Updated man page.John MacFarlane2017-01-29
|
* Updated MANUAL date and man page.John MacFarlane2016-12-10
|
* Update date in manual and man page.John MacFarlane2016-11-30
|
* Small caps in Bracketed Spans (#3191)ickc2016-11-16
| | | | | | | | * Markdown reader: modify bracketedSpan to check small caps * MANUAL.txt: add description on the use of `bracketed_spans` in small cap * Improve markdown readers: bracketedSpan function EXACTLY as spanHtml
* Updated man page.John MacFarlane2016-10-26
|
* Updated man page.John MacFarlane2016-10-26
|
* update manual accordinglyKolenCheung2016-10-09
|
* Replace Google Chart API by CodeCogsKolenCheung2016-10-06
|
* Updated man page and MANUAL date.John MacFarlane2016-09-26
|
* Updated man page.John MacFarlane2016-07-14
|
* Updated man page.John MacFarlane2016-06-04
|
* Updated man page.John MacFarlane2016-03-24
|
* Updated man page.John MacFarlane2016-03-22
|
* Updated man page.John MacFarlane2016-03-21
|
* Updated man page.John MacFarlane2016-03-19
|
* Rebuilt man page.John MacFarlane2016-03-18
|
* Update pandoc.1ickc2016-03-06
|
* Updated man page.John MacFarlane2016-01-13
|
* Regenerated man page.John MacFarlane2016-01-10
|
* Updated man page.John MacFarlane2016-01-02
|
* Updated filter for man pages.John MacFarlane2016-01-02
|
* Updated man page.John MacFarlane2015-11-16
|
* Updated man page.John MacFarlane2015-11-16
|
* Updated man page.John MacFarlane2015-11-15
|
* Updated man page from README.John MacFarlane2015-11-12
|
* Man page update.John MacFarlane2015-10-16
|
* Updated pandoc.1.John MacFarlane2015-10-15
|
* Updated man page from README.John MacFarlane2015-10-10
|
* Updated man page.John MacFarlane2015-08-13
|
* List all styles in manual for --reference-docxChris Black2015-07-21
|
* Don't capitalize header links in man page.John MacFarlane2015-07-21
| | | | Also regenerated man page from latest README.
* Updated man page.John MacFarlane2015-07-15
|
* Updated man page.John MacFarlane2015-07-10
|
* Added pandoc.1 to repository. Don't build as part of cabal build.John MacFarlane2015-07-02
| | | | | | | | The process was too fragile. It made too many assumptions about available libraries (which failed sometimes when sandboxes were used). This is a low-tech solution. The only drawback is that `man/pandoc.1` is a generated file in the repository. It will need to be regenerated periodically when README changes.
* 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`.
* 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.
* replace old url with pandoc.orgPablo Rodríguez2015-06-09
|
* make-pandoc-man-pages: fixed to build with new readMarkdown type.John MacFarlane2015-03-28
|
* Put version in lower-left corner of man pages.John MacFarlane2014-08-30
|
* Rewrote normalize for efficiency. (Closes #1385.)John MacFarlane2014-06-29
| | | | | | | | * Added normalizeInlines, normalizeBlocks. * Type signature is now more narrow, `Pandoc -> Pandoc` instead of `Data a :: a -> a`. Some users may need to change their uses of `normalize` to the newly exported `normalizeInlines` or `normalizeBlocks`.
* Remove CPP from default-extensions; add pragmas to modules as needed.John MacFarlane2013-08-04
|
* remove reference in pandoc.1 to markdown2pdf (1)Jens Petersen2013-05-01
|
* make-pandoc-man-pages: CPP macros to import right time module.John MacFarlane2013-01-25
|
* Added Attr field to Header.John MacFarlane2013-01-09
| | | | | | | | | | Previously header ids were autogenerated by the writers. Now they are generated (unless supplied explicitly) in the markdown parser, if the `header_identifiers` extension is selected. In addition, the textile reader now supports id attributes on headers.
* make-pandoc-man-pages: Use MIN_VERSION macro rather than checking GHC version.John MacFarlane2012-10-15
| | | | | This is more reliable, since directory 1.2.0.1 can be used with GHC < 1.7.6.
* Moved man page creation out of Setup.hs.John MacFarlane2012-10-15
| | | | | | | | | | * MakeManPage.hs has been transformed into man/make-pandoc-man-pages.hs. * There is now a cabal stanza for this, so the dependencies are handled by cabal. * Special treatment in Setup.hs ensures that this never gets installed; it is built and used to create the man pages. * Setup.hs cleaned up.