Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-11-27 | MediaWiki writer: fix caption, use 'thumb' instead of 'frame'. | John MacFarlane | 1 | -17/+33 | |
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-24 | EPUB writer: handle calibre metadata. | John MacFarlane | 1 | -1/+22 | |
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-22 | Hlint suggestions. | John MacFarlane | 2 | -25/+24 | |
2018-11-22 | RTF writer: fix warnings for skipped raw inlines. | John MacFarlane | 1 | -1/+1 | |
2018-11-22 | OpenDocument writer: small amendment to #5095. | John MacFarlane | 1 | -1/+1 | |
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 | Merge pull request #5095 from pyssling/master | John MacFarlane | 1 | -2/+2 | |
ODT writer: Fix list indentation | |||||
2018-11-22 | ODT writer: Fix list indentation | Nils Carlson | 1 | -2/+2 | |
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-21 | HTML writer: use plain `"` instead of `"` outside of attributes. | John MacFarlane | 1 | -1/+2 | |
2018-11-20 | Docx writer: Fix bookmarks to headers with long titles. | John MacFarlane | 1 | -4/+18 | |
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-19 | Fix compiler warning. | John MacFarlane | 1 | -1/+1 | |
2018-11-19 | AsciiDoc writer: improve ordered lists. | John MacFarlane | 1 | -32/+27 | |
Use `.`+ as list markers to support nested ordered lists. Closes #5087. Support list number styles. Closes #5089. | |||||
2018-11-19 | For bibliography match Div with id 'refs', not class 'references'. | John MacFarlane | 4 | -8/+8 | |
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-15 | Asciidoc writer: Render Spans using `[#id .class]#contents#`. | John MacFarlane | 1 | -3/+7 | |
See #5080. | |||||
2018-11-15 | Muse writer: output tables as grid tables if they have multi-line cells | Alexander Krotov | 1 | -1/+13 | |
2018-11-14 | Muse writer: indent simple tables only on the top level | Alexander Krotov | 1 | -4/+5 | |
2018-11-14 | Muse writer: simplify "simpleTable" | Alexander Krotov | 1 | -7/+4 | |
2018-11-14 | Muse writer: remove outdated comments | Alexander Krotov | 1 | -3/+0 | |
2018-11-13 | Muse writer: output tables with one column as grid tables | Alexander Krotov | 1 | -1/+1 | |
2018-11-12 | LaTeX writer: don't emit `[<+->]` unless beamer output, | John MacFarlane | 1 | -2/+3 | |
even if `writerIncremental` is True. See #5072. | |||||
2018-11-11 | Text.Pandoc.Shared: add parameter to uniqueIdent, inlineListToIdentifier. | John MacFarlane | 7 | -10/+13 | |
The parameter is Extensions. This allows these functions to be sensitive to the settings of `Ext_gfm_auto_identifiers` and `Ext_ascii_identifiers`. This allows us to use `uniqueIdent` in the CommonMark reader, replacing some custom code. It also means that `gfm_auto_identifiers` can now be used in all formats. Semantically, `gfm_auto_identifiers` is now a modifier of `auto_identifiers`; for identifiers to be set, `auto_identifiers` must be turned on, and then the type of identifier produced depends on `gfm_auto_identifiers` and `ascii_identifiers` are set. Closes #5057. | |||||
2018-11-07 | Merge pull request #5054 from lierdakil/docx-image-bookmarks | John MacFarlane | 1 | -26/+17 | |
Docx image and code block bookmarks | |||||
2018-11-07 | Texinfo writer: add blank line before `@menu` section. | John MacFarlane | 1 | -1/+2 | |
Closes #5055. | |||||
2018-11-07 | [Docx Writer] Add bookmarks to code blocks | Nikolay Yakimov | 1 | -2/+2 | |
2018-11-07 | [Docx Writer] Add bookmarks to images | Nikolay Yakimov | 1 | -2/+2 | |
2018-11-07 | [Docx Writer] Refactor common bookmark creation code into a function | Nikolay Yakimov | 1 | -22/+13 | |
2018-11-07 | ICML writer: fix missing type signature warning | Albert Krewinkel | 1 | -3/+4 | |
2018-11-06 | ICML writer: consolidate adjacent strings, inc. spaces. | John MacFarlane | 1 | -15/+15 | |
This avoids chunking up the output unnecessarily into separate elements. | |||||
2018-11-06 | hlint Muse writer | Alexander Krotov | 1 | -1/+1 | |
2018-11-05 | CommonMark writer: make sure --ascii affects quotes, super/subscript. | John MacFarlane | 1 | -6/+12 | |
2018-11-05 | CommonMark writer: respect --ascii (#5043) | quasicomputational | 1 | -1/+18 | |
2018-11-05 | Muse writer: add support for --reference-location= | Alexander Krotov | 1 | -6/+44 | |
Address #107 | |||||
2018-11-03 | AsciiDoc writer: prevent illegal nestings. | John MacFarlane | 1 | -1/+9 | |
In asciidoc you can only have level n+1 headers directly under level n headers. | |||||
2018-11-03 | AsciiDoc writer: use single-line section headers. | John MacFarlane | 1 | -29/+9 | |
The underline style is now deprecated. Previously `--atx-headers` would enable the single-line style; now the single-line style is always used. Closes #5038. | |||||
2018-11-01 | Change 'groff' -> 'roff'. | John MacFarlane | 3 | -9/+9 | |
These formats (man, ms) are not groff-specific. | |||||
2018-11-01 | Implement --ascii for Markdown writer. | John MacFarlane | 1 | -23/+35 | |
2018-11-01 | HTML writer: use character entities references when possible for HTML5. | John MacFarlane | 1 | -2/+8 | |
2018-11-01 | LaTeX writer: remove unused local bind | Alexander Krotov | 1 | -1/+1 | |
2018-10-31 | ZimWiki writer: number ordered list items sequentially... | John MacFarlane | 1 | -28/+24 | |
rather than always with 1. | |||||
2018-10-31 | LaTeX writer: add newline if math ends in a comment. | John MacFarlane | 1 | -2/+12 | |
This prevents the closing delimiter from being swalled up in the comment. Closes #4880. | |||||
2018-10-29 | ZimWiki writer: remove extra indentation on lists. | John MacFarlane | 1 | -8/+8 | |
Closes #4963. | |||||
2018-10-28 | EPUB writer: use metadata field `css` instead of `stylesheet` | mb21 | 1 | -3/+4 | |
closes #4990 | |||||
2018-10-28 | T.P.Lua: expose more useful internals (API change) | Albert Krewinkel | 1 | -3/+2 | |
Newly exported from Text.Pandoc.Lua: - `runFilterFile` to run a Lua filter from file; - data type `Global` and its constructors; and - `setGlobals` to add globals to a Lua environment. This module also contains `Pushable` and `Peekable` instances required to get pandoc's data types to and from Lua. Low-level Lua operation remain hidden in Text.Pandoc.Lua. | |||||
2018-10-28 | T.P.Lua: rename `runPandocLua` to `runLua` (API change) | Albert Krewinkel | 1 | -2/+2 | |
2018-10-26 | Rename Groff -> Roff. | John MacFarlane | 3 | -5/+5 | |
Module T.P.Readers.Groff -> T.P.Readers.Roff Module T.P.Writers.Groff -> T.P.Writers.Roff Module T.P.GroffChar -> T.P.RoffChar GroffTokens -> RoffTokens GroffToken -> RoffToken. | |||||
2018-10-26 | Text.Pandoc.Lua: move globals handling to separate module | Albert Krewinkel | 1 | -30/+8 | |
2018-10-26 | Man writer: don't wrap .SH and .SS lines. | John MacFarlane | 1 | -1/+1 | |
Closes #5019. | |||||
2018-10-25 | Muse writer: add support for grid tables | Alexander Krotov | 1 | -23/+35 | |
2018-10-24 | Ms writer - removed old escapeBar. | John MacFarlane | 1 | -8/+2 | |
We don't need this now that we use @ for delim. | |||||
2018-10-24 | Rename manEscapes -> standardEscapes | John MacFarlane | 1 | -2/+2 | |
2018-10-23 | Groff writer character escaping changes. | John MacFarlane | 3 | -46/+56 | |
T.P.GroffChar: replaced `essentialEscapes` with `manEscapes`, which includes all the escapes mentioned in the groff_man manual. T.P.Writers.Groff: removed escapeCode; changed parameter on escapeString from Bool to new type `EscapeMode`. Rewrote `escapeString`. |