aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2021-10-24Fixed test/epub/img.epub and img_no_cover.epub...John MacFarlane2-0/+0
so they're valid epubs.
2021-10-23Fix conformance errors in test/epub/features.epub andJohn MacFarlane2-0/+0
test/epub/formatting.epub. See #7586.
2021-10-23Fix description of sandbox feature in changelog.John MacFarlane1-4/+3
2021-10-23Update AUTHORS.mdJohn MacFarlane1-22/+30
2021-10-23Fix 2.15 release date on changelog.John MacFarlane1-1/+1
2021-10-23CircleCI: use homebrew not curl to install stack.John MacFarlane1-1/+3
2021-10-23Update changelog.John MacFarlane1-2/+4
2021-10-23Use ipynb 0.1.0.2.John MacFarlane3-14/+5
With this change pandoc can be built with aeson >= 2.
2021-10-23Lua: convert IOErrors to PandocErrors in pandoc.pipe functionAlbert Krewinkel1-0/+2
Fixes: #7523
2021-10-23changelog.md: update some Lua-related entriesAlbert Krewinkel1-2/+5
2021-10-22Minor reformatting in chargelog.John MacFarlane1-6/+5
2021-10-22Bump to 2.15, updaet man page.John MacFarlane3-57/+165
2021-10-22Update changelog.John MacFarlane1-1/+4
2021-10-22Org reader: allow an initial :PROPERTIES: drawer to add to metadata.John MacFarlane3-3/+33
Closes #7520.
2021-10-22Update changelog.John MacFarlane1-3/+33
2021-10-22Use citeproc 0.6, commonmark 0.2.2.1, commonmark-extensions 0.2.2John MacFarlane3-25/+6
2021-10-22Use texmath 0.12.3.2John MacFarlane3-8/+2
2021-10-22Use simpleFigure in Readers.Aner Lucero25-110/+93
2021-10-22Use pandoc-types 1.22.1.John MacFarlane3-9/+3
2021-10-22Lua: marshal Version values as userdataAlbert Krewinkel7-126/+13
2021-10-22Lua: marshal Inline elements as userdataAlbert Krewinkel3-334/+345
This includes the following user-facing changes: - Deprecated inline constructors are removed. These are `DoubleQuoted`, `SingleQuoted`, `DisplayMath`, and `InlineMath`. - Attr values are no longer normalized when assigned to an Inline element property. - It's no longer possible to access parts of Inline elements via numerical indexes. E.g., `pandoc.Span('test')[2]` used to give `pandoc.Str 'test'`, but yields `nil` now. This was undocumented behavior not intended to be used in user scripts. Use named properties instead. - Accessing `.c` to get a JSON-like tuple of all components no longer works. This was undocumented behavior. - Only known properties can be set on an element value. Trying to set a different property will now raise an error.
2021-10-22Lua: marshal Attr values as userdataAlbert Krewinkel8-188/+272
- Adds a new `pandoc.AttributeList()` constructor, which creates the associative attribute list that is used as the third component of `Attr` values. Values of this type can often be passed to constructors instead of `Attr` values. - `AttributeList` values can no longer be indexed numerically.
2021-10-22Lua: marshal Pandoc values as userdataAlbert Krewinkel4-32/+37
2021-10-22Switch to hslua-2.0Albert Krewinkel29-1249/+1152
The new HsLua version takes a somewhat different approach to marshalling and unmarshalling, relying less on typeclasses and more on specialized types. This allows for better performance and improved error messages. Furthermore, new abstractions allow to document the code and exposed functions.
2021-10-22Provisional changelog updates.John MacFarlane1-1/+413
There's still some time before a new release, but this is a start.
2021-10-21Move splitStrWhen to T.P.Citeproc.Util.John MacFarlane3-23/+15
Previously there were two copies, in BibTeX and Locator.
2021-10-21SelfContained: fix bug that caused everything to be made a data uri.John MacFarlane1-12/+12
All the code we needed to put most styles and scripts into inline style and script tags was there, but because of the order of pattern matching, it was never being called. Putting the catch-all clause at the end fixes the bug. Closes #7635, closes #7367. See also #3423.
2021-10-21Fix line numbers in source code with reveal.jsJohn MacFarlane1-0/+3
We need "overflow: visible" for these to work, and reveal's default css disables this. So this modifies the default template to add this. Closes #7634. Thanks to @cderv for diagnosing the issue.
2021-10-20Markdown reader: don't parse links or bracketed spans as citations.John MacFarlane2-2/+70
Previously pandoc would parse [link to (@a)](url) as a citation; similarly [(@a)]{#ident} This is undesirable. One should be able to use example references in citations, and even if `@a` is not defined as an example reference, `[@a](url)` should be a link containing an author-in-text citation rather than a normal citation followed by literal `(url)`. Closes #7632.
2021-10-19FormatHeuristics: remove `.tei.xml` extension for TEI.John MacFarlane1-1/+0
As noted in #7630, this never worked, because `takeExtension` only returns `.xml`. So it won't be missed if we remove it. Closes #7630.
2021-10-18Docx reader: fix handling of empty fieldsMilan Bracke4-0/+15
Some fields only have an instrText and no content, Pandoc didn't understand these, causing other fields to be misunderstood because it seemed like a field was still open when it wasn't.
2021-10-18Docx parser: implement PAGEREF fieldsMilan Bracke8-7/+41
These fields, often used in tables of contents, can be a hyperlink.
2021-10-18Docx reader: fix handling of nested fieldsMilan Bracke5-115/+159
Fields delimited by fldChar elements can contain other fields. Before, the nested fields would be ignored, except for the end, which would be considered the end of the parent field. To fix this issue, fields needed to be considered containing ParParts instead of Runs, since a Run can't represent complex enough structures. This also impacted Hyperlinks since they can originate from a field.
2021-10-17pptx: Line up continuation paragraphsEmily Bourke49-11/+94
This commit changes the `marL` and `indent` values used for plain paragraphs and numbered lists, and changes the spacing defined in the reference doc master for bulleted lists. For paragraphs, there is now a left-indent taken from the `otherStyle` in the master. For numbered lists, the number is positioned where the text would be if this were a plain paragraph, and the text is indented to the next level. This means that continuation paragraphs line up nicely with numbered lists. It also /mostly/ matches the observed PowerPoint behaviour when inserting paragraphs and numbered lists: the only difference is that PowerPoint was using a different margin value for the first level numbered lists – I’ve changed this to match the other levels, as I don’t think it makes the spacing unappealing and it allows continuation paragraphs at any level to line up. With bulleted lists, I’m keeping the observed PowerPoint behaviour of specifying only a level, letting `marL` and `indent` be automatically taken from `bodyStyle`. To that end, this commit changes the `bodyStyle` spacing in the master of the default reference doc, to: - line up the text of the first paragraph in each bullet with any continuation paragraphs - line up nested bullet markers in any continuation paragraphs with the first paragraph, matching lists and plain paragraphs This does mean the continuation paragraphs still won’t line up for anyone using their own reference doc where they haven’t matched the `otherStyle` and `bodyStyle` indent levels, but I think people in that situation will be able to troubleshoot.
2021-10-17pptx: Remove outdated commentEmily Bourke1-3/+0
I removed the field this comment refers to recently, missed the comment.
2021-10-17pptx: Fix list level numberingEmily Bourke24-14/+43
In PowerPoint, the content of a top-level list is at the same level as the content of a top-level paragraph – the only difference is that a list style has been applied. At the moment, the pptx writer increments the paragraph level on each list, turning what should be top-level lists into second-level lists. This commit changes that logic, only incrementing the paragraph level on continuation paragraphs of lists. - Fixes https://github.com/jgm/pandoc/issues/4828 - Fixes https://github.com/jgm/pandoc/issues/4663
2021-10-16Ensure that babel is loaded also with pdflatex.John MacFarlane2-6/+4
This fixes a regression in #7604, which modernized babel usage but omitted to load babel for pdflatex, with the result that even simple documents could no longer be produced. Closes #7627.
2021-10-16CI: remove linux-pdf for now.John MacFarlane1-57/+0
I don't know what is going on with lmodern and lualatex.
2021-10-16CI: more tweaks to pdf tests.John MacFarlane1-3/+3
2021-10-16CI: pdf test: need an input file!John MacFarlane1-1/+1
2021-10-16CI: fix yaml workflow.John MacFarlane1-3/+4
2021-10-16CI: add workflow to test pdf production...John MacFarlane1-0/+56
with xelatex, pdflatex, lualatex.
2021-10-14asciidoc writer: translate numberLines attribute to linesnum switchSamuel Tardieu2-2/+21
AsciiDoctor allows to request line numbering on code blocks by using a switch on the `source` block, such as in: ``` [source%linesnum,haskell] ---- some Haskell code here ---- ```
2021-10-14DocBook reader: honor linenumbering attributeSamuel Tardieu3-0/+9
The attribute DocBook linenumbering="numbered" attribute on code blocks maps to "numberLines" internally.
2021-10-14Remove redundant $Samuel Tardieu1-1/+1
Found by hlint 3.3.1
2021-10-13Fix markdown parsing bug for math in bracketed spans and links.John MacFarlane2-0/+13
This affects math with unbalanced brackets (e.g. `$(0,1]$`) inside links, images, bracketed spans. Closes #7623.
2021-10-12cabal build: go back to using aeson < 2 for now.John MacFarlane1-9/+11
2021-10-12Revert "Depend on pandoc-types 1.23, remove Null constructor on Block."John MacFarlane33-6/+44
This reverts commit fb0d6c7cb63a791fa72becf21ed493282e65ea91.
2021-10-12cabal.project: Dependencies to build with aeson 2.John MacFarlane2-2/+13
2021-10-12Allow aeson 2.0John MacFarlane1-1/+1