aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-10-04Docx Reader: Create special punctuation testOphir Lifshitz3-0/+6
2015-10-04Docx Reader: Parse soft, no-break hyphen elementsOphir Lifshitz2-1/+7
2015-10-03Template updates.John MacFarlane2-11/+15
Beamer: added `innertheme`, `outertheme` variables. LaTeX: added `mainfontoptions`, `sansfontoptions`, `monofontoptions`, `mathfontoptions`, `fontfamilyoptions`.
2015-10-03Allow HUnit 1.3John MacFarlane1-1/+1
2015-10-03FIxed typo: Ext_superscript, Ext_subscript.John MacFarlane1-2/+2
2015-10-03For markdown_mmd, add: implicit_figures, superscripts, subscripts.John MacFarlane1-0/+9
See #2401.
2015-09-29Beamer template: allow setting outer/inner theme.John MacFarlane1-7/+7
2015-09-27appveyor.yml: removed part that builds the package.John MacFarlane1-15/+15
2015-09-27appveyor.yml: Fixed another multiline statement.John MacFarlane1-4/+1
2015-09-27appveyor.yml: Another attempt to set VERSION.John MacFarlane1-2/+1
2015-09-27appveyor.yml: put whole for loop on one line.John MacFarlane1-4/+1
2015-09-27appveyor.yml: another try in version extraction.John MacFarlane1-1/+5
2015-09-27appveyor.yml: removed :next label.John MacFarlane1-1/+0
2015-09-27appveyor.yml: Tried another approach to get pandoc version.John MacFarlane1-4/+1
2015-09-27appveyor.yml: don't run tests for pandoc-citeproc.John MacFarlane1-2/+1
They won't work til we upgrade HP version, because of minor changes in aeson.
2015-09-27appveyor.yml: use cmd instead of ps.John MacFarlane1-5/+3
2015-09-27appveyor.yml: Build pandoc-citeproc after main test.John MacFarlane1-1/+3
2015-09-27appveyor: cache Haskell Platform.John MacFarlane1-0/+3
2015-09-27Merge pull request #2420 from xymostech/patch-1John MacFarlane1-2/+2
Update KaTeX JS and CSS versions.
2015-09-27appveyor.yml: fixed cabal flag.John MacFarlane1-1/+1
2015-09-27appveyor: attempt to create msi package after build.John MacFarlane1-3/+28
2015-09-26Removed unneeded imports.John MacFarlane2-3/+2
2015-09-26MediaBag: ensure that / is always used as path separator.John MacFarlane3-8/+11
2015-09-26appveyor.yml: revert to non-stack version.John MacFarlane1-24/+17
2015-09-26Update KaTeX JS and CSS versions.Emily Eisenberg1-2/+2
Update the default KaTeX JS/CSS links to the current version. KaTeX v0.5.1 has far more functions and symbols than v0.1.0, so it seems like a better default. I think technically this might break compatibility because we released a breaking change due to the greediness of the `\color` function, but this probably has very little impact.
2015-09-26appveyor.yml: Get submodules.John MacFarlane1-0/+1
2015-09-26appveyor: Fixed stack.exe path.John MacFarlane1-1/+1
2015-09-26More appveyor fixes.John MacFarlane1-2/+2
2015-09-26appveyor.yml: changed clone dir.John MacFarlane1-1/+5
2015-09-26New appveyor.yml using stack.John MacFarlane1-17/+19
Copied, mostly, from stack's repo.
2015-09-26Changes to templates to support handling of bidirectional text.John MacFarlane1-7/+7
(LaTeX, ConTeXt, HTML)
2015-09-26Merge pull request #2419 from mb21/bidiJohn MacFarlane3-13/+59
Support bidirectional text output with XeLaTeX, ConTeXt and HTML
2015-09-26Slightly improved description of citation locators in README.John MacFarlane1-6/+10
2015-09-26Merge pull request #2418 from nickbart1980/patch-3John MacFarlane1-1/+8
Give details of locator terms
2015-09-26Support bidirectional text output with XeLaTeX, ConTeXt and HTMLmb213-13/+59
closes #2191
2015-09-26Give details of locator termsnickbart19801-1/+8
2015-09-26Removed unneeded import.John MacFarlane1-1/+0
2015-09-25Correctly recognize book documentclass in metadata.John MacFarlane1-1/+1
Closes #2395.
2015-09-25Markdown reader: handle 'id' and 'class' in parsing key/value attrs.John MacFarlane1-1/+5
# Header {id="myid" class="foo bar"} is now equivalent to # Header {#myid .foo .bar} Closes #2396.
2015-09-25LaTeX, ConTeXt templates: more specific language variables.John MacFarlane1-6/+7
Instead of directly using `lang`, we now use `babel-lang` and `polyglossia-lang` and `context-lang`. These variables are set by the writers to the necessary values, based on the `lang` variable (which now always takes a value in BCP47 format).
2015-09-23Allow syb 0.6.John MacFarlane1-3/+3
2015-09-23LaTeX reader: support longtable.John MacFarlane1-0/+2
Closes #2411.
2015-09-22Merge pull request #2369 from mb21/language-variablesJohn MacFarlane3-16/+192
`lang` variable is now in BCP47 format
2015-09-20Allow aeson 0.10.John MacFarlane2-2/+3
2015-09-20Merge pull request #2406 from tarleb/org-verse-fixJohn MacFarlane2-1/+10
Make sure verse blocks can contain empty lines
2015-09-19Merge pull request #2405 from lierdakil/rest-normalize-amendJohn MacFarlane2-1/+32
[RST Writer] Don't normalize heading levels below input minimum
2015-09-19Make sure verse blocks can contain empty linesAlbert Krewinkel2-1/+10
The previous verse parsing code made the faulty assumption that empty strings are valid (and empty) inlines. This isn't the case, so lines are changed to contain at least a newline. It would generally be nicer and faster to keep the newlines while splitting the string. However, this would require more code, which seems unjustified for a simple (and fairly rare) block as *verse*. This fixes #2402.
2015-09-19[RST Writer] Don't normalize heading levels below input minimumNikolay Yakimov2-1/+32
2015-09-17Markdown writer: in TOC, add links to headers.John MacFarlane1-2/+5
Closes #829.
2015-09-15sample.lua - define CaptionedImage, add newline at end.John MacFarlane1-1/+7
Cloess #2393.