summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* OSX package script: cabal init before update.John MacFarlane2014-05-07
|
* Bumped version bound for mtl.John MacFarlane2014-05-07
|
* Require latest texmath.John MacFarlane2014-05-07
|
* Require latest highlighting-kate.John MacFarlane2014-05-07
|
* Small improvement to textile reader fix. Removed 'try'.mpickering2014-05-07
|
* Fix textile reader hanging.mpickering2014-05-07
| | | | | | | | Textile reader hung on pandoc -f textile http://johnmacfarlane.net/pandoc/demo/example25.textile The reader no longer hangs.
* README: Updated Authors.John MacFarlane2014-05-07
|
* Textile reader: Rearranged inline parsers for performance.John MacFarlane2014-05-06
| | | | | This is possible because of the rewrite of simpleInline. Also removed a redundant parser for grouped inlines.
* Textile reader: Rewrote simpleInline for clarity and efficiency.John MacFarlane2014-05-06
| | | | This way we only look once for the opening `[`.
* Textile reader: Disallow blank lines in inline contexts.John MacFarlane2014-05-06
| | | | | | | | @hi there@ should not be a single code span.
* Make `--trace` work with textile reader.John MacFarlane2014-05-06
|
* Textile reader: Rewrote some inline parsing code for clarity.John MacFarlane2014-05-06
| | | | | | (It seems clearer to put the whitespace parsing in the grouped parser. This also uses stateLastStrPos to determine when the border is adjacent to an alphanumeric.)
* Updated tests for template changes.John MacFarlane2014-05-06
|
* Updated changelog.John MacFarlane2014-05-06
|
* LaTeX template: Added linestretch variable.John MacFarlane2014-05-06
| | | | Documented this and fontfamily.
* Added fontfamily variable to latex template. (tlvince)John MacFarlane2014-05-06
|
* Updated templates: conditionalize author/date in latex template.John MacFarlane2014-05-06
|
* Updated changelog.John MacFarlane2014-05-06
|
* Update latex/beamer templates: load upquote after fontenc.John MacFarlane2014-05-06
|
* Merge pull request #1280 from tarleb/org-inline-blocksJohn MacFarlane2014-05-06
|\ | | | | Org reader: Read inline code blocks
| * Org reader: Read inline code blocksAlbert Krewinkel2014-05-06
| | | | | | | | | | | | | | | | | | | | | | Org's inline code blocks take forms like `src_haskell(print "hi")` and are frequently used to include results from computations called from within the document. The blocks are read as inline code and marked with the special class `rundoc-block`. Proper handling and execution of these blocks is the subject of a separate library, rundoc, which is work in progress. This closes #1278.
* | Windows installer: more typos from transition from cabal-dev.John MacFarlane2014-05-06
| |
* | Windows install script: Fixed typo in path.John MacFarlane2014-05-06
| |
* | make_osx_package: install alex, happy, hsb2hs.John MacFarlane2014-05-06
| |
* | Windows install script: install alex, happy.John MacFarlane2014-05-06
|/
* Windows package script: use cabal sandbox, not cabal-dev.John MacFarlane2014-05-05
|
* make_osx_package: Use cpphs to avoid problems with clang cpp.John MacFarlane2014-05-04
| | | | See https://github.com/jgm/pandoc/issues/1172
* Updated changelog.John MacFarlane2014-05-04
|
* Fixed the fix to #1154.John MacFarlane2014-05-04
| | | | We need to strip off up to 4 spaces, not up to 3.
* LaTeX writer: Fixed inconsistencies with reference escaping.John MacFarlane2014-05-04
| | | | | - toLabel is now monadic, and it does the needed string escaping. - Closes #1130.
* README: Clarified citation key syntax.John MacFarlane2014-05-04
|
* Clarified use of `--natbib` and `--biblatex`.John MacFarlane2014-05-04
| | | | Not for use with pandoc-citeproc.
* Docx writer: Fall back on distribution reference.docx.John MacFarlane2014-05-04
| | | | | | | | * Undid changes to parseXml in last commit. * Instead of a string fallback, we have parseXml fall back on the reference.docx that comes with pandoc if the user's reference.docx does not contain a needed file. * Closes #1185.
* Docx writer: Added ability to give fallback in parseXml.John MacFarlane2014-05-04
|
* Added test for #1154.John MacFarlane2014-05-04
|
* Markdown reader: Fixed bug with unwanted code in lists.John MacFarlane2014-05-04
| | | | | | | Closes #1154. When reading a raw list item, we now strip off nonindent spaces.
* Added Tests.Writer.AsciiDoc to repository.John MacFarlane2014-05-03
|
* README: Note about `unnumbered` being added to final 'References' sect.John MacFarlane2014-05-03
|
* AsciiDoc writer: Handle multiblock table cells.John MacFarlane2014-05-03
| | | | Closes #1246.
* AsciiDoc writer: Added test for empty table cells.John MacFarlane2014-05-03
|
* AsciiDoc writer: Correctly handle empty table cells.John MacFarlane2014-05-03
| | | | Closes #1245.
* DocBook writer: Small tweaks to last commit.John MacFarlane2014-05-03
| | | | | | | | * Use isTightList from Shared. * Adjust writer test, since isTightList is a bit different from what was used before. Closes #1250.
* Distinguish tight and loose lists in Docbook outputNeil Mayhew2014-05-03
| | | | Determined by the first block of the first item being Plain.
* LaTeX reader: Fixed regression introduced with last commit.John MacFarlane2014-05-03
| | | | Tests now pass again.
* LaTeX reader: Better error messages with include files.John MacFarlane2014-05-03
| | | | | | | | | | | | | | Closes #1274. Rewrote handleIncludes. We now report the actual source file and position where the error occurs, even if it is included. We do this by inserting special commands, `\PandocStartInclude` and `\PandocEndInclude`, that encode this information in the preprocessing phase. Also generalized the types of a couple functions from `Text.Pandoc.Parsing`.
* Fixed empty reference links. Closes #1186.John MacFarlane2014-05-02
| | | | Includes test.
* Markdown reader: Make one-column pipe tables work.John MacFarlane2014-05-01
| | | | Closes #1218.
* Merge pull request #1272 from tarleb/link-typesJohn MacFarlane2014-05-01
|\ | | | | Org reader: add support for custom link types
| * Org reader: Add support for custom link typesAlbert Krewinkel2014-05-01
| | | | | | | | | | | | | | | | | | | | | | Org allows users to define their own custom link types. E.g., in a document with a lot of links to Wikipedia articles, one can define a custom wikipedia link-type via #+LINK: wp https://en.wikipedia.org/wiki/ This allows to write [[wp:Org_mode][Org-mode]] instead of the equivallent [[https://en.wikipedia.org/wiki/Org_mode][Org-mode]].
| * gitignore: Ignore cabal's sandbox filesAlbert Krewinkel2014-04-30
| |