Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-10-25 | Template improvements (Andrew Dunning). | John MacFarlane | 4 | -16/+19 | |
- Added `keywords` to HTML templates and fixed alignment. - Updated dzslides template from source. - Added `lang`, `dir`, `quotes` to HTML templates; always make author and date display conditional. - Fixed `author` and `date` in asciidoc; added `keywords`, `abstract`. - Updated tests. | |||||
2015-10-25 | Merge pull request #2477 from tarleb/org-toggling-header-args | John MacFarlane | 2 | -4/+35 | |
Org reader: allow toggling header args | |||||
2015-10-25 | LaTeX writer: \textarabic fix | mb21 | 1 | -1/+1 | |
2015-10-25 | Org reader: allow toggling header args | Albert Krewinkel | 2 | -4/+35 | |
Org-mode allows to skip the argument of a code block header argument if it's toggling a value. Argument-less headers are now recognized, avoiding weird parsing errors. The fixes are not exactly pretty, but neither is the code that was fixed. So I guess it's about par for the course. However, a rewrite of the header parsing code wouldn't hurt in the long run. Thanks to @jo-tham for filing the bug report. This fixes #2269. | |||||
2015-10-24 | deb/Makefile: added 'clean'. | John MacFarlane | 1 | -1/+4 | |
2015-10-24 | deb/Vagrantfile: share .., so we can put the deb there. | John MacFarlane | 1 | -1/+1 | |
2015-10-24 | Added Vagrantfile for building deb in vm. | John MacFarlane | 2 | -0/+81 | |
This should help in automating binary package creation. 'make package' will make the package. 'make package COMMIT=blah' will make the package from commit blah. | |||||
2015-10-24 | Fixed typo. | John MacFarlane | 2 | -2/+2 | |
2015-10-24 | Fixed typo. | John MacFarlane | 1 | -1/+1 | |
2015-10-24 | Added Paths_pandoc to other-modules for executable stanza. | John MacFarlane | 1 | -0/+1 | |
2015-10-24 | make_deb: changed path for man page. | John MacFarlane | 1 | -1/+2 | |
stack doesn't install it as cabal did. | |||||
2015-10-24 | Improved fetching of pandoc-citeproc man page. | John MacFarlane | 2 | -4/+16 | |
2015-10-24 | Moved PATH setting in make_deb, make_osx_package. | John MacFarlane | 2 | -4/+6 | |
Otherwise 'which hsb2hs' won't find the local one. | |||||
2015-10-24 | Set paths in make_deb and make_osx_package. | John MacFarlane | 2 | -0/+5 | |
This is needed to include a locally installed hsb2hs. | |||||
2015-10-24 | Changed path . to .. in deb/osx stack.yaml. | John MacFarlane | 2 | -2/+2 | |
2015-10-24 | Changes for deb and osx package generators. | John MacFarlane | 4 | -21/+33 | |
- Use stack for make_deb.sh. - Use osx/stack.yaml or deb/stack.yaml. - deb/stack.yaml doesn't want the same ghc-options. | |||||
2015-10-24 | Added stack.hsb2hs.yaml, for easy installation of hsb2hs. | John MacFarlane | 1 | -0/+4 | |
2015-10-24 | make_osx_package: don't create man5. | John MacFarlane | 1 | -1/+0 | |
2015-10-24 | Merge pull request #2475 from tarleb/org-paragraph-before-list | John MacFarlane | 2 | -6/+37 | |
Org reader: fix paragraph/list interaction | |||||
2015-10-24 | Org reader: fix paragraph/list interaction | Albert Krewinkel | 2 | -6/+37 | |
Paragraphs can be followed by lists, even if there is no blank line between the two blocks. However, this should only be true if the paragraph is not within a list, were the preceding block should be parsed as a plain instead of paragraph (to allow for compact lists). Thanks to @rgaiacs for bringing this up. This fixes #2464. | |||||
2015-10-23 | Note expanded support for abstract, keywords. | Andrew Dunning | 1 | -2/+2 | |
Based on <https://github.com/jgm/pandoc-templates/pull/144>, <https://github.com/jgm/pandoc-templates/pull/142>. | |||||
2015-10-22 | Fixed over-eager raw HTML inline parsing. | John MacFarlane | 2 | -0/+4 | |
Tightened up the inline HTML parser so it disallows TagWarnings. This only affects the markdown reader when the `markdown_in_html_blocks` option is disabled. Closes #2469. | |||||
2015-10-22 | Avoid compiler warning for unused identifier. | John MacFarlane | 1 | -1/+1 | |
2015-10-22 | Changed § to % in operators from Odt.Arrows.Utils. | John MacFarlane | 5 | -43/+42 | |
This prevents problems building haddocks with "C" locale. Closes #2457. | |||||
2015-10-22 | Textile writer: support start number in ordered lists. | John MacFarlane | 1 | -7/+18 | |
e.g. `#3`. Partially addresses #2465. TBD: reader support. | |||||
2015-10-22 | Update LaTeX/ConTeXt variable usage in README. | Andrew Dunning | 1 | -15/+21 | |
Accounts for changes in https://github.com/jgm/pandoc-templates/pull/141. | |||||
2015-10-20 | Updated tests for latex/context template changes. | John MacFarlane | 6 | -161/+87 | |
2015-10-20 | Merge pull request #2467 from adunning/patch-1 | John MacFarlane | 1 | -27/+73 | |
Add new variables for ConTeXt template to README. | |||||
2015-10-20 | Add new variables for ConTeXt template to README. | Andrew Dunning | 1 | -27/+73 | |
2015-10-20 | LaTeX template: simplify hyperref usage. | John MacFarlane | 1 | -7/+7 | |
Andrew Dunning. #139. | |||||
2015-10-20 | ConTeXt template: link color to black, define all sections. | John MacFarlane | 1 | -7/+7 | |
Andrew Dunning. | |||||
2015-10-20 | Update date on README. | John MacFarlane | 1 | -1/+1 | |
2015-10-20 | Allow use of ConTeXt to generate PDFs. | John MacFarlane | 3 | -14/+91 | |
pandoc my.md -t context -o my.pdf will now create a PDF using ConTeXt rather than LaTeX. Closes #2463. | |||||
2015-10-19 | Fixed one test case. | John MacFarlane | 1 | -1/+1 | |
2015-10-19 | Updated latex, beamer templates to support language divs/spans. | John MacFarlane | 1 | -7/+7 | |
Mainly this adds a template variable that can be filled by commands that make babel understand the polyglossia-style language directives. Thanks to mb21. | |||||
2015-10-19 | Merge pull request #2458 from mb21/lang-inlines | John MacFarlane | 8 | -38/+430 | |
LaTeX and ConTeXt writers: support lang attribute on divs and spans | |||||
2015-10-19 | Use MarLinn's real name in changelog. | John MacFarlane | 1 | -1/+1 | |
2015-10-18 | Updated tests for template changes. | John MacFarlane | 3 | -3/+3 | |
2015-10-18 | HTML-based templates: Use en dash between title prefix & title. | John MacFarlane | 1 | -7/+7 | |
Instead of a hyphen. (Andrew Dunning.) | |||||
2015-10-18 | Merge pull request #2461 from classeur/master | John MacFarlane | 1 | -5/+5 | |
Fixed auto_identifiers examples | |||||
2015-10-18 | Tests: Unset `pandoc-version` so we don't get the comment... | John MacFarlane | 2 | -3/+2 | |
in the man writer test. Otherwise this needs updating every version bump. | |||||
2015-10-18 | Man template: make "generated by" comment conditional. | John MacFarlane | 1 | -7/+7 | |
This allows it to be disabled for automated tests, so they needn't be updated every version bump. | |||||
2015-10-18 | stack.yaml : use 3.10 resolver. | John MacFarlane | 2 | -4/+2 | |
2015-10-18 | Added writers-lang-and-dir test, fixed ConTeXt writer test | mb21 | 5 | -0/+309 | |
The writers-lang-and-dir testGroup tests LaTeX and ConTeXt writers' language and directionality output | |||||
2015-10-18 | LaTeX and ConTeXt writers: support lang attribute on divs and spans | mb21 | 3 | -38/+121 | |
For LaTeX, also collect lang and dir attributes on spans and divs to set the lang, otherlangs and dir variables if they aren’t set already. See #895. | |||||
2015-10-18 | Fixed auto_identifiers examples | Benoit Schweblin | 1 | -5/+5 | |
2015-10-17 | Version bump to 1.15.1.1, updated changelog. | John MacFarlane | 2 | -1/+8 | |
2015-10-17 | Text.Pandoc.Data: store paths in dataFiles using posix separators. | John MacFarlane | 1 | -1/+9 | |
This way we have uniform separators, whether on Windows or Linux. This should solve a problem where on some Windows versions the data files weren't being found. Closes #2459. | |||||
2015-10-17 | Remove compiler warning with embed_data_files. | John MacFarlane | 1 | -1/+1 | |
2015-10-16 | Man page update. | John MacFarlane | 1 | -1/+6 | |