aboutsummaryrefslogtreecommitdiff
path: root/test/command
AgeCommit message (Collapse)AuthorFilesLines
2020-11-26LaTeX reader: preserve center environment (#6852)Igor Pashev1-0/+13
The contents of the `center` environment are put in a `Div` with class `center`.
2020-11-25Update tests for LaTeX table changes.John MacFarlane1-10/+5
2020-11-25Fix truncation of `[Citation]` list in `Cite` inside footnotes...John MacFarlane1-0/+36
This affected author-in-text citations in footnotes. It didn't cause problems for the printed output, but for filters that expected the citation id and other information. Closes #6890.
2020-11-24HTML reader: support row or column-spanning table cellsAlbert Krewinkel1-10/+10
2020-11-22OpenDocument Writer: Implement Div and Span ident support (#6755)Nils Carlson1-0/+11
Spans and Divs containing an ident in the Attr will become bookmarks or sections with idents in OpenDocument format.
2020-11-22LaTeX writer: Improve table spacing.John MacFarlane2-9/+9
+ Remove the `\strut` that was added at the end of minipage environments in cells. + Replace `\tabularnewline` with `\\ \addlinespace`. Closes #6842, closes #6860.
2020-11-21OpenDocument writer: Table text width support (#6792)Nils Carlson1-0/+66
Support for table width as a percentage of text width by summing width of columns and verifying that the sum is > 0 and <= 1.
2020-11-21LaTeX reader: more robust parsing of bracketed options.John MacFarlane1-0/+7
Improves on 9a40976. Closes #6873.
2020-11-20DocBook reader: Table text width support (#6791)Nils Carlson1-0/+32
Table width in relation to text width is not natively supported by docbook but is by the docbook fo stylesheets through an XML processing instruction, <?dbfo table-width="50%"?> . Implement support for this instruction in the DocBook reader.
2020-11-20Improve LaTeX option parsing...John MacFarlane1-0/+6
in cases where we run into trouble parsing inlines til the closing `]`, e.g. quotes, we return a plain string with the option contents. Previously we mistakenly included the brackets in this string. Closes #6869.
2020-11-20`commonmark_x`: replace `auto_identifiers` with `gfm_auto_identifiers`.John MacFarlane1-2/+2
`commonmark_x` never actually supported `auto_identifiers` (it didn't do anything), because the underlying library implements gfm-style identifiers only. Attempts to add the `autolink_identifiers` extension to `commonmark` will now fail with an error. Closes #6863.
2020-11-18Man reader: improve handling of .IP.John MacFarlane1-0/+52
We now better handle `.IP` when it is used with non-bullet, non-numbered lists, creating a definition list. We also skip blank lines like groff itself. Closes #6858.
2020-11-18Replace org #+KEYWORDS with #+keywordsTEC3-26/+26
As of ~2 years ago, lower case keywords became the standard (though they are handled case insensitive, as always): https://code.orgmode.org/bzg/org-mode/commit/13424336a6f30c50952d291e7a82906c1210daf0 Upper case keywords are exclusive to the manual: - https://orgmode.org/list/871s50zn6p.fsf@nicolasgoaziou.fr/ - https://orgmode.org/list/87tuuw3n15.fsf@nicolasgoaziou.fr/
2020-11-17Markdown reader: fix regression with example list references.John MacFarlane1-0/+12
This affects example list references followed by dashes. Introduced by commit b8d17f7. Closes #6855.
2020-11-16Improve fix to siunitx numbers with minus.John MacFarlane2-15/+27
- use real minus sign - use tests contributed by Igor Pashev.
2020-11-16LaTeX reader: Fix negative numbers in siunitx commands.John MacFarlane1-0/+15
The commit a157e1a broke negative numbers, e.g. `\SI{-33}{\celcius}` or `\num{-3}`. This fixes the regression.
2020-11-15Markdown reader: fix detection of locators following in-text citations.John MacFarlane1-0/+6
Prevously, if we had `@foo [p. 33; @bar]`, the `p. 33` would be incorrectly parsed as a prefix of `@bar` rather than a suffix of `@foo`.
2020-11-14Markdown writer: default to using ATX headings.Aner Lucero27-90/+75
Previously we used Setext (underlined) headings by default. The default is now ATX (`##` style). * Add the `--markdown-headings=atx|setext` option. * Deprecate `--atx-headers`. * Add constructor 'ATXHeadingInLHS` constructor to `LogMessage` [API change]. * Support `markdown-headings` in defaults files. * Document new options in MANUAL. Closes #6662.
2020-11-14Markdown reader: don't increment stateNoteNumber for example refs.John MacFarlane1-0/+17
Background: syntactically, references to example list items can't be distinguished from citations; we only know which they are after we've parsed the whole document (and this is resolved in the `runF` stage). This means that pandoc's calculation of `citationNoteNum` can sometimes be wrong when there are example list references. This commit partially addresses #6836, but only for the case where the example list references refer to list items defined previously in the document.
2020-11-13Improve period suppression algorithm for citations in notes...John MacFarlane1-2/+2
in note citation styles. See #6835.
2020-11-04DokuWiki writer: translate language names for code elements...John MacFarlane1-0/+1
...and improve whitespace. Closes #6807.
2020-11-03Properly support optional cite argument for `\blockquote`.John MacFarlane1-0/+9
(LaTeX reader) Closes #6802.
2020-11-02LaTeX reader: fix bug parsing macro arguments.John MacFarlane1-0/+16
If `\cL` is defined as `\mathcal{L}`, and `\til` as `\tilde{#1}`, then `\til\cL` should expand to `\tilde{\mathcal{L}}`, but pandoc was expanding it to `\tilde\mathcal{L}`. This is fixed by parsing the arguments in "verbatim mode" when the macro expands arguments at the point of use. Closes #6796.
2020-11-01Citeproc: use comma for in-text citations inside footnotes.John MacFarlane1-1/+1
When an author-in-text citation like `@foo` occurs in a footnote, we now render it with: `AUTHOR NAME + COMMA + SPACE + REST`. Previously we rendered: `AUTHOR NAME + SPACE + "(" + REST + ")"`. This gives better results. Note that normal citations are still rendered in parentheses.
2020-10-29Use new citeproc; do note capitalization here, not in citeproc.John MacFarlane2-3/+3
2020-10-29LaTeX writer: Improved calculation of table column widths.John MacFarlane1-3/+3
We now have LaTeX do the calculation, using `\tabcolsep`. So we should now have accurate relative column widths no matter what the text width. The default template has been modified to load the calc package if tables are used.
2020-10-27Use latest citeproc. Closes #6783.John MacFarlane1-0/+26
2020-10-26DocBook Reader: fix duplicate bibliography bug (#6773)Nils Carlson1-0/+20
Also add unit test to ensure the behavior stays consistent.
2020-10-23Commonmark writer: fix regression with fenced divs.John MacFarlane1-0/+21
Starting with 2.10.1, fenced divs no longer render with HTML div tags in commonmark output. This is a regression due to our transition from cmark-gfm. This commit fixes it. Closes #6768.
2020-10-21Use latest citeproc.John MacFarlane1-0/+31
This fixes a problem with author-in-text citations for references including both an author and an editor. Previously, both were included in the text, but only the author should be. Closes #6765. Added a test.
2020-10-21citeproc - improved removal of final period...John MacFarlane1-0/+25
...in citations inside notes in note-based styles. These citations are put in parentheses, but the final period must be removed. See jgm/citeproc#20
2020-10-15Fix handling of xdata in bibtex/biblatex bibliographies.John MacFarlane1-0/+36
Closes #6752.
2020-10-14Fix typos in comments, doc strings, error messages, and testsAlbert Krewinkel2-4/+4
Typos reported by https://fossies.org/linux/test/pandoc-master.tar.gz/codespell.html See: #6738
2020-10-13Depend on latest citeproc.John MacFarlane1-0/+145
This fixes the citation number issue with ieee.csl and other styles that do not explicitly sort bibliographies. (Pandoc was numbering them by their order in the bibliography file, rather than the order cited, as required by the CSL spec.) Closes #6741.
2020-10-13Use latest citeproc (better grouping/collapsing behavior with prefixes).John MacFarlane1-2/+2
2020-10-12Commonmark reader: add pipe_table extension after defaults.John MacFarlane1-0/+21
Otherwise we get bad results for non-table, non-paragraph lines containing pipe characters. Closes #6739. See also jgm/commonmark-hs#52.
2020-10-12Markdown writer: Fix autolinks rendering for gfm.John MacFarlane1-0/+7
Previously, autolinks rendered as raw HTML, due to the `class="uri"` added by pandoc's markdown reader. Closes #6740.
2020-10-10LaTeX reader: allow blank lines inside `\author`.John MacFarlane1-0/+17
2020-10-08LaTeX reader: Fix parsing of "show name" in newtheorem.John MacFarlane1-1/+1
Previously we were just treating it as a string and ignoring accents and formatting. See #6734.
2020-10-08Extend fix to #6719 to JATS readerJohn MacFarlane1-0/+10
2020-10-08DocBook reader: don't squelch space at end of emphasis element.John MacFarlane1-0/+8
Instead, include it after the emphasis. Closes #6719. Same fix was made for other inline elements, e.g. strikethrough.
2020-10-08Fixed some bibtex comments in tests (closing }).John MacFarlane2-2/+4
2020-10-08Be less aggressive about using quotes for YAML values.John MacFarlane120-617/+615
We need quotes if `[` or `{` or `'` is at the beginning of the line, but not otherwise.
2020-10-07Use double quotes for YAML metadata.John MacFarlane126-880/+880
Closes #6727.
2020-10-07Fix URL prefixes in citations also when they occur in notes.John MacFarlane8-128/+407
Update chicago-fullnote-bibliography.csl and adjust tests. Closes #6723.
2020-10-06Unescape entities in writing CSL JSON.John MacFarlane1-0/+17
The renderCslJson function escapes `<`, `>`, and `&` as entities. This is appropriate when generating HTML, but in CSL JSON these are supposed to appear unescaped. Closes jgm/citeproc#17.
2020-10-03Use latest citeproc.John MacFarlane1-5/+7
Update chicago-fullnute-bibliography test, which is now correct.
2020-10-01Update to lastest citeprocJohn MacFarlane2-4/+3
2020-09-27OpenDocument Writer: Implement table cell alignment (#6700)Nils Carlson2-20/+65
Co-authored-by: Mauro Bieg <mb21@users.noreply.github.com>
2020-09-26Fix short-title.John MacFarlane1-14/+18
We were getting null short-titles generated, and that was creating wrong citations in some cases. Close #6702.