summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Textile reader: Fixed bug affected words ending in hyphen.John MacFarlane2012-09-28
| | | | | Note: sepBy1 doesn't work quite as I expected. It gives odd results if sep succeeds but not p.
* Textile: Improvements to surround and symbol.John MacFarlane2012-09-28
|
* RST reader: Support ".. code::".John MacFarlane2012-09-28
|
* RST reader: Combine para/plain.John MacFarlane2012-09-28
|
* Makefile: Use Hackage citeproc-hs 0.3.5.John MacFarlane2012-09-28
|
* HTML writer: Use toHtml instead of pre-escaping.John MacFarlane2012-09-28
| | | | | | | | | | | | | We work around the problem that blaze-html unnecessarily escapes `'` by pre-escaping just the `'` characters, instead of the whole string. If blaze-html later stops escaping `'` characters, we can simplify strToHtml to toHtml. Note that this change yields a significant speed boost (111ms to 94ms on one benchmark). Closes #629.
* RST reader: Made para parser slightly more efficient.John MacFarlane2012-09-28
|
* RST reader: Use Text.Pandoc.Builder.John MacFarlane2012-09-27
| | | | | | This will give us more flexibility in the future. It also gives built-in normalization. Performance slightly better.
* Shared: Export compactify', formerly in Markdown reader.John MacFarlane2012-09-27
|
* Parsing: Changed type of stateSubstitutions to use Inlines.John MacFarlane2012-09-27
|
* Removed nullBlock.John MacFarlane2012-09-27
| | | | | Don't use nullBlock in Textile reader. Better to know about parsing problems than to skip stuff when we get stuck.
* RST reader: Support :target: on image substitutions.John MacFarlane2012-09-27
|
* Added stateSubstitutions to ParserState, use for RST substitutions.John MacFarlane2012-09-27
|
* Removed Ext_monospace_autolinks.John MacFarlane2012-09-27
|
* Added Ext_autolink_urls.John MacFarlane2012-09-27
|
* Renamed Ext_autolink_code_spans to Ext_monospace_autolinks.John MacFarlane2012-09-27
|
* RST reader: Support :target: on .. image:: blocks.John MacFarlane2012-09-26
| | | | Still not supported on substitution definitions.
* Makefile: Don't remove citeproc-hs and pandoc-types with clean.John MacFarlane2012-09-26
| | | | Added new 'veryclean' target that removes these too.
* Biblio: Remove workaround for toCapital.John MacFarlane2012-09-26
| | | | | Now citeproc-hs is fixed upstream, so this is no longer needed. Closes #531.
* Makefile: Use Andrea's repository for citeproc-hs.John MacFarlane2012-09-26
|
* Shared: Count \r as space in removeLeading/TrailingSpace.John MacFarlane2012-09-26
|
* UTF8: Better error message for invalid UTF8.John MacFarlane2012-09-26
| | | | | | | Read bytestring and use Text's decodeUtf8 instead of using System.IO's hGetContents. This way you get a message saying "invalid UTF-8 stream" instead of "invalid byte sequence." You are also told which byte caused the problem.
* Make --id-prefix affect footnote IDs in markdown writer.John MacFarlane2012-09-25
| | | | Closes #614.
* Removed need for utf8-string package.John MacFarlane2012-09-25
| | | | | | | | * Depend on text. * Expose Text.Pandoc.UTF8. * Text.Pandoc.UTF8 now exports toString, fromString, toStringLazy, fromStringLazy. * These are used instead of the old utf8-string functions.
* UTF8: use universalNewlineMode in reading.John MacFarlane2012-09-25
| | | | | This treats both '\r\n' and '\n' as '\n' on input, no matter what platform we're running on.
* Texinfo writer: Fixed internal cross-references.John MacFarlane2012-09-24
| | | | | | | | | | | Now we insert anchors after each header, and use @ref instead of @uref for links. Commas are now escaped as @comma{} only when needed; previously all commas were escaped. (This change is needed, in part, because @ref commands must be followed by a real comma or period.) Also insert a blank line in from of @verbatim environments.
* Revert "More intelligent handling of text encodings."John MacFarlane2012-09-23
| | | | This reverts commit 7272735b3d413a644fd9ab01eeae8ae9cd5a925b.
* More intelligent handling of text encodings.John MacFarlane2012-09-23
| | | | | | | | | | Previously, UTF-8 was enforced for both input and output. The new system: * For input, UTF-8 is tried first; if an error is raised, the locale encoding is tried. * For output, the locale encoding is always used.
* Removed unneeded CPP conditional.John MacFarlane2012-09-23
| | | | | Removed code that was conditional on base < 4.2, since now we require base >= 4.2.
* Added base dependencies for test suite.John MacFarlane2012-09-23
|
* Added 'UTF8.' to decodeArg.John MacFarlane2012-09-23
|
* Require base >= 4.2 (i.e. GHC 6.12).John MacFarlane2012-09-23
|
* Revert "Use local encoding for input/output rather than forcing UTF8."John MacFarlane2012-09-23
| | | | This reverts commit c69837adb648a479167be5e2d37279a02be8060c.
* Use local encoding for input/output rather than forcing UTF8.John MacFarlane2012-09-23
| | | | | | | Note that system templates are stored as UTF8 and will still be read as such, even if the local encoding is different. Text downloaded from URLs will also be treated as UTF-8.
* UTF8: Export decodeArg.John MacFarlane2012-09-23
|
* Export encodePath/decodePath from UTF8.John MacFarlane2012-09-23
| | | | Removed duplicate code in src/pandoc.hs.
* Markdown reader: Fixed link parser to avoid exponential slowdowns.John MacFarlane2012-09-22
| | | | | | | | | | | | | | | | | | | | Previously the parser would hang on input like this: [[[[[[[[[[[[[[[[[[hi We fixed this by making the link parser parser characters between balanced brackets (skipping brackets in inline code spans), then parsing the result as an inline list. One change is that [hi *there]* bud](/url) is now no longer parsed as a link. But in this respect pandoc behaved differently from most other implementations anyway, so that seems okay. All current tests pass. Added test for this case. Closes #620.
* LaTeX reader: Added a 'try' in rawLaTeXBlock.John MacFarlane2012-09-22
| | | | | | | | This allows the markdown reader to treat '\begin' (not followed by an argument) as a raw string rather than erroring out when it doesn't find a '{'. Closes #622.
* Tests.Old: Set TMP to ".".John MacFarlane2012-09-21
| | | | | Otherwise TMP is unset and, on Windows, C:\Windows is used by default, leading to permission violations.
* Merge pull request #619 from bgamari/masterJohn MacFarlane2012-09-21
|\ | | | | Various version bumps
| * Setup: getModificationTime returns UTCTime as of GHC 7.6Ben Gamari2012-09-21
| |
| * Bump network upper bound to <2.5Ben Gamari2012-09-21
| | | | | | | | network 2.4 is now on hackage
| * Bump directory upper bound to <1.3Ben Gamari2012-09-21
| | | | | | | | directory-1.2 is in ghc 7.6
| * Bump containers upper bound to <0.6Ben Gamari2012-09-21
|/ | | | Since containers 0.5 is in the wild as of ghc 7.6
* README: Removed claim that 'enumerate' library is needed in LaTeX.John MacFarlane2012-09-16
| | | | It isn't any longer.
* LaTeX/Beamer templates: Don't require 'float' package for tables.John MacFarlane2012-09-16
| | | | We don't actually seem to use the '[H]' option.
* LaTeX writer: Don't rely on the enumerate package.John MacFarlane2012-09-16
| | | | Instead, use standard LaTeX commands to change numbering style.
* LaTeX writer: Properly escape strings inside \url{}.John MacFarlane2012-09-16
| | | | Closes #576.
* RST writer: Fixed hyperlinked images.John MacFarlane2012-09-16
| | | | | | | * Use :target: field when you have a simple linked image. * Don't wrap the reference. * Cleaned up code. * Closes #611.
* RST reader: Small tweaks to raw field lists.John MacFarlane2012-09-16
| | | | | | * Don't allow line breaks in field names. * Strip off initial newline from 'raw' when field body begins on next line.