Commit graph

11999 commits

Author SHA1 Message Date
John MacFarlane
ec07a5298c Man reader: use mapLeft from Shared. 2018-11-29 13:28:56 -08:00
Julien Kirch
cefb0886c3 Fix progit book url 2018-11-29 16:26:31 -05:00
John MacFarlane
945eed3a28 Bump to version 2.6 because of API change in read/writeJSON. 2018-11-29 12:57:27 -08:00
John MacFarlane
90f5dd88a4 Changed types of writeJSON and readJSON.
Previously they were not monadic; we now have them run in an
instance of the Pandoc monad, like the other readers and writers.

[API change]
2018-11-29 12:56:06 -08:00
John MacFarlane
5c9ddaac2c INSTALL.md: Small wording tweak. 2018-11-29 12:35:36 -08:00
John MacFarlane
62b4b84bd5 LaTeX reader: Support \inputminted (closes #5103). 2018-11-29 11:11:44 -08:00
John MacFarlane
049a773b5b Fix custom tests. 2018-11-29 11:04:08 -08:00
John MacFarlane
642c022d81 sample.lua: add SingleQuoted, DoubleQuoted.
Closes #5104.
2018-11-29 10:42:05 -08:00
John MacFarlane
77a40d6f34 MediaWiki writer: fix caption, use 'thumb' instead of 'frame'.
Captions used to have the word 'caption' prepended; this
has been removed.

Also, 'thumb' is used instead of 'frame' to allow images
to be resized.

Closes #5105.
2018-11-27 14:45:39 -08:00
John MacFarlane
14027cd8a8 INSTALL.md: Use button for installer links. 2018-11-27 09:57:47 -08:00
Mauro Bieg
3e32053b5b update INSTALL.md 2018-11-27 12:49:13 -05:00
Mauro Bieg
4b98ec329c simplify INSTALL.md 2018-11-27 12:49:13 -05:00
John MacFarlane
473b4ad62d Update linux Dockerfile to use cabal new-build. 2018-11-26 23:15:06 -08:00
John MacFarlane
56b4b072f1 Update README.md. 2018-11-25 23:25:21 -08:00
John MacFarlane
610b017413 Update changelog. 2018-11-25 23:24:46 -08:00
John MacFarlane
83c0789205 Added test for #5053.
Note that the fix for #5099 also fixes #5053, a pandoc 2.4
regression in parsing underscore emphasis after symbols.
2018-11-25 22:50:16 -08:00
John MacFarlane
edc651059e Fix parsing of citations and quotes after parentheses.
Starting with pandoc 2.4, citations and quoted inlines
were no longer recognized after parentheses.  This is
because of commit 9b0bd4ec6f,
which is reverted here.

The point of that commit was to allow relocation of
soft line breaks to before an abbreviation, so that
a nonbreaking space could be added after the
abbreviation.  Now we simply leave the soft line
break in place, even though this means that
we won't get a nonbreaking space after "Mr."
at the end of a line (and in LaTeX this may
result in a longer intersentential space).
Those who care about this issue should take care
not to end lines with an abbreviation, or to
insert nonbreaking spaces manually.

Closes #5099.
2018-11-25 22:29:54 -08:00
John MacFarlane
839bd3cfe6 Update date in manual and update man page. 2018-11-24 20:40:07 -08:00
John MacFarlane
743d1b368f EPUB writer: handle calibre metadata.
Nodes of the form

    <meta name="calibre:series" content="Classics on War and Politics"/>

are now included from an epub XML metadata file.  You can also
include this information in your YAML metadata, like so:

    calibre:
      series: Classics on War and Policitics

In addition, ibooks-specific metadata can now be included via
an XML file. (Previously, it could only be included via YAML
metadata, see #2693.)

Closes #5098.
2018-11-24 20:34:54 -08:00
Alexander Krotov
bbe34da854 MediaWiki reader internals: remove unnecessary binding 2018-11-25 03:39:02 +03:00
John MacFarlane
8ae18138df Use latest dev version of pandoc-citeproc.
IT allows pandoc 2.5.
2018-11-23 10:21:24 -05:00
John MacFarlane
8c90f34d15 Hlint suggestions. 2018-11-22 22:41:12 -05:00
John MacFarlane
cc4ec3feee RTF writer: fix warnings for skipped raw inlines. 2018-11-22 22:40:52 -05:00
John MacFarlane
e02500afe8 Bump version to 2.5. 2018-11-22 22:18:37 -05:00
John MacFarlane
c9691b91df OpenDocument writer: small amendment to #5095.
Level one lists should start at 0.5in rather than 0.75in.
(At least this is how LibreOffice behaves for me with a new
document.)
2018-11-22 22:02:08 -05:00
John MacFarlane
2e1366b3e0
Merge pull request #5095 from pyssling/master
ODT writer: Fix list indentation
2018-11-22 21:46:55 -05:00
Nils Carlson
eb82fd6b5e ODT writer: Fix list indentation
Previously lists were indented by half an inch on the first line
for each level of nesting. This resulted in lists that looked like
this:

1.      The first line of the list point text
the second line of the same list point.

Fix this and bring style into line with libreoffice standards:

    1.  The first line of the list point text
        the second line of the list point text.
2018-11-22 17:18:09 +00:00
John MacFarlane
f961dd7c1b MANUAL: Fix outdated description of latex_macros extension. 2018-11-21 22:56:50 -05:00
John MacFarlane
1aa24245e9 HTML writer: use plain " instead of &quot; outside of attributes. 2018-11-21 22:25:18 -05:00
John MacFarlane
191141f27f Fix markdown-citations test for new abbreviations changes. 2018-11-20 23:56:13 -05:00
John MacFarlane
9c4b707d53
Merge pull request #5093 from adunning/patch-1
Additional bibliographical abbreviations
2018-11-20 23:51:09 -05:00
John MacFarlane
d333c283cc Docx writer: Fix bookmarks to headers with long titles.
Word has a 40 character limit for bookmark names.  In
addition, bookmarks must begin with a letter.  Since
pandoc's auto-generated identifiers may not respect
these constraints, some internal links did not work.

With this change, pandoc uses a bookmark name based
on the SHA1 hash of the identifier when the identifier
isn't a legal bookmark name.

Closes #5091.
2018-11-20 23:43:21 -05:00
Andrew Dunning
514af101ef
Additional abbreviations
Many of these borrowed from the Chicago Manual of Style 10.42, 'Scholarly abbreviations', <https://www.chicagomanualofstyle.org/book/ed17/part2/ch10/psec042.html>.
2018-11-20 15:42:24 -05:00
John MacFarlane
2d265917b0 Fix compiler warning. 2018-11-19 17:20:49 -08:00
John MacFarlane
a5910c0a31 AsciiDoc writer: improve ordered lists.
Use `.`+ as list markers to support nested ordered lists.  Closes #5087.
Support list number styles.  Closes #5089.
2018-11-19 13:17:33 -08:00
Albert Krewinkel
c0d8b0abcb
Lua filters: test AST object equality via Haskell
Equality of Lua objects representing pandoc AST elements is tested by
unmarshalling the objects and comparing the result in Haskell. A new
function `equals` which performs this test has been added to the
`pandoc.utils` module.

Closes: #5092
2018-11-19 21:46:20 +01:00
John MacFarlane
e80bcb9bea Asciidoc template: add :lang: to title header is lang is set in metadata.
Closes #5088.
2018-11-19 12:02:25 -08:00
John MacFarlane
a78bef17b9 For bibliography match Div with id 'refs', not class 'references'.
This was a mismatch between pandoc's docx, epub, latex, and markdown
writers and the behavior of pandoc-citeproc, which actually looks
for a div with id 'refs' rather than one with class 'references'.
2018-11-19 11:08:09 -08:00
John MacFarlane
3689d047a8 MANUAL.txt: Clarified placement of bibliography. 2018-11-19 10:46:50 -08:00
John MacFarlane
1a679a4d6e LaTeX reader: cleaned up handling of dimension arguments.
Allow decimal points, preceding space.

Also require text 1.1+.
2018-11-19 00:17:22 -08:00
John MacFarlane
fda3e40163 LaTeX reader: don't allow arguments for verbatim, etc. 2018-11-18 23:50:36 -08:00
John MacFarlane
e86cbcd7e1 LaTeX reader: Allow space before bracketed options. 2018-11-18 23:50:21 -08:00
John MacFarlane
8a157ff839 LaTeX reader: allow optional arguments after \\ in tables. 2018-11-18 23:40:18 -08:00
John MacFarlane
681afbfaac LaTeX reader: improve parsing of \tiny, scriptsize, etc.
Parse as raw, but know that these font changing commands
take no arguments.
2018-11-18 23:32:02 -08:00
Alexander Krotov
5c643d535b FB2 reader: do not throw error for unknown elements in <body>
Some libraries include custom elements in their FB2 files.
2018-11-19 04:07:02 +03:00
Albert Krewinkel
1b15913b6e
Lua Utils module: improve stringify
Meta value strings (MetaString) and booleans (MetaBool) are now
converted to the literal string and the lowercase boolean name,
respectively. Previously, all values of these types were converted to
the empty string.
2018-11-17 17:40:16 +01:00
Mauro Bieg
f07ae68558
cusomizing-pandoc.md: streamline template text 2018-11-17 14:39:26 +01:00
Mauro Bieg
0466c0a8b0
customizing-templates.md: variable options table 2018-11-17 14:23:49 +01:00
John MacFarlane
d532eb14eb HTML reader: allow tfoot before body rows.
Closes #5079.
2018-11-16 11:29:15 -08:00
John MacFarlane
e61f632531 HTML reader: parse <small> as a Span with class "small".
Closes #5080.
2018-11-15 22:36:01 -08:00