aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-11-04Manual: Edit "Extension: fenced_divs" (#4039)Tristano Ajmone1-0/+9
Add paragraph at end of `Extension: fenced_divs` section to clarify that the actual number of colons in fences is irrelevant. (See issue #4037).
2017-11-04Test case change for texmath 0.10.John MacFarlane1-2/+2
2017-11-03Use texmath 0.10.John MacFarlane3-1/+3
2017-11-03Updated tests.John MacFarlane2-2/+2
2017-11-03Use latest skylighting.John MacFarlane3-3/+3
2017-11-03Added a few abbreviations and sorted the list. (#3984)Wandmalfarbe1-19/+42
2017-11-02Improved support for columns in HTML.John MacFarlane18-53/+53
* Move as much as possible to the CSS in the template. * Ensure that all the HTML-based templates (including epub) contain the CSS for columns. * Columns default to 50% width unless they are given a width attribute. Closes #4028.
2017-11-02Update skylighting version in stack.pkg.yaml.John MacFarlane1-1/+1
2017-11-02Merge pull request #4032 from wilx/masterJohn MacFarlane1-2/+6
pandoc-template-mode: Comments auto-fill and HTML attributes highlighting fixes.
2017-11-03Merge remote-tracking branch 'upstream/master'Vaclav Haisman64-327/+560
2017-11-03pandoc-template-mode.el: Improve.Vaclav Haisman1-2/+6
Avoid highlighting of "strings" by deriving from `text-mode-syntax-table`. This fixes missing highlighting in default.html5 tag attributes. Define comment starting and ending sequences to allow use of M-q (auto-fill) on comments.
2017-11-02Support `lineAnchors` (or `line-anchors`) in code blocks, for HTML.John MacFarlane2-0/+8
2017-11-02Use latest skylighting; ensure no duplicate ids on code lines.John MacFarlane6-13/+24
The line identifiers are built using the code block's identifier as a prefix. If the code block has null identifier, we use "cb1", "cb2", etc. Closes #4031.
2017-11-02Bump tasty upper bound.John MacFarlane1-1/+1
2017-11-02Fixed revealjs slide column width issues.John MacFarlane2-7/+10
* Remove "width" attribute which is not allowed on div. * Remove space between `<div class="column">` elements, since this prevents columns whose widths sum to 100% (the space takes up space). Closes #4028.
2017-11-02hlintAlexander Krotov7-28/+25
2017-11-01Removed reference to default.beamer in docs.John MacFarlane1-2/+3
Also added mention of other templates affecting PDF output with different settings. Closes #4024.
2017-11-01Merge pull request #4022 from adam234/patch-1John MacFarlane1-1/+1
MacOS instructions needed xar -f
2017-11-01SelfContained: use base64 for css links with media attribute.John MacFarlane1-0/+1
This fixes `--self-contained` with s5. Closes #4026.
2017-11-01MacOS instructions needed xar -f Adam1-1/+1
As written, produces an error
2017-11-01Really fix #3989.John MacFarlane2-6/+13
The previous fix only worked in certain cases. Other cases with `>` in an HTML attribute broke.
2017-11-01Updated command test for #3989.John MacFarlane1-5/+3
We didn't fix it completely before.
2017-11-01hlintAlexander Krotov18-53/+53
2017-11-01FB2 writer: Add "unrecognised" genre to <title-info>Alexander Krotov9-8/+10
XML schema requires at least one genre.
2017-11-01FB2 writer: remove <annotation> from <body>Alexander Krotov9-23/+9
<annotation> is not allowed inside <body> according to FictionBook2 XML schema. Besides that, the same information is already placed inside <description>. Related bug: #2424
2017-10-31Update changelog.John MacFarlane1-2/+12
2017-11-01Merge pull request #4009 from mb21/html-class-namesJohn MacFarlane7-23/+23
HTML Writer: consistently use dashed class-names
2017-11-01Merge pull request #4008 from labdsf/fb2-bulletsJohn MacFarlane2-18/+14
FB2 writer: make bullet lists consistent with ordered lists
2017-11-01Merge pull request #4001 from labdsf/fb2-testsJohn MacFarlane3-0/+37
Add new style FB2 tests
2017-10-31Update changelog.John MacFarlane1-0/+49
2017-10-31Updated date on manual and regenerated man page.John MacFarlane2-14/+40
2017-10-31Version to 2.0.1.John MacFarlane1-1/+1
2017-10-31Properly pass through author metadata in JATS writer.John MacFarlane2-41/+26
Closes #4020.
2017-10-31Fixed regression in parsing of HTML comments in markdown...John MacFarlane2-2/+11
and other non-HTML formats (`Text.Pandoc.Readers.HTML.htmlTag`). The parser stopped at the first `>` character, even if it wasn't the end of the comment. Closes #4019.
2017-11-01Merge pull request #4018 from swilde/creole-fixesJohn MacFarlane2-6/+21
Creole Reader: fix lists with triling white space
2017-10-31Creole reader: fixed some minor typos and formatting.Sascha Wilde1-4/+5
2017-10-31Creole reader: additional test on nowiki-block after para.Sascha Wilde1-1/+4
2017-10-31Add Millimeter constructor to Dimension in ImageSize.John MacFarlane2-1/+14
Minor API change. Now sizes given in 'mm' are no longer converted to 'cm'. Closes #4012.
2017-10-31LaTeX reader: handle `%` comment right after command.John MacFarlane3-1/+55
For example \emph% {hi}
2017-10-31Revise documentation of small caps syntax. (#4013)Andrew Dunning1-6/+10
2017-10-31Fix broken reference links in manual. (#4014)Andrew Dunning1-2/+2
2017-10-31LaTeX/Beamer writer: support "blocks" inside columns and other Divs.John MacFarlane1-0/+4
Example: ``` <div class="columns"> <div class="column" width="40%"> - Item </div> <div class="column" width="60%"> - Item </div> </div> ``` Closes #4016.
2017-10-31Markdown reader: make sure fenced div closers work in lists.John MacFarlane3-5/+12
Previously the following failed: ::: {.class} 1. one 2. two ::: and you needed a blank line before the closing `:::`.
2017-10-31Make `fenced_divs` affect the Markdown writer.John MacFarlane2-8/+15
If `fenced_divs` is enabled, fenced divs will be used.
2017-10-31Fixed example of slide columns structure in changelog.John MacFarlane2-10/+27
Also documented this feature in MANUAL.txt. Closes #4015.
2017-10-31Creole reader: fixed lists with trailing white space.Sascha Wilde2-1/+12
2017-10-31FB2 writer: write blocks outside of <p> in definitionsAlexander Krotov2-52/+38
2017-10-31HTML Writer: consistently use dashed class-namesmb217-23/+23
see #3556
2017-10-31FB2 writer: make bullet lists consistent with ordered listsAlexander Krotov2-18/+14
Previously bullet lists interacted in odd way with ordered lists. For example, bullet lists nested in ordered list had incorrect indentation. Besides that, indentation with spaces is not rendered by FBReader and fbless. To avoid this problem, bullet lists are indented by appending bullets to marker just the same way it is done for ordered lists.
2017-10-30Add -linux suffix to linux tarball.John MacFarlane1-1/+1