| Age | Commit message (Collapse) | Author | Files | Lines | 
|---|
|  | Closes #2697. | 
|  | Previously smart quotes were incorrect in the following:
    '$\neg(x \in x)$'.
(because of the following period).  This commit fixes the problem,
which was introduced by commit 4229cf2d92faf5774fe1a3a9c89a5de885cf75cd. | 
|  | Previously these were given "left" alignment.  Better to leave off
alignment attributes altogether.
Closes #2694. | 
|  | We want to make sure that links have their spaces removed, and are
appropriately smushed together.
This closes #2689 | 
|  | Cleanup of the code for link target handling.  Most notably, the
canonicalization of a link is handled by a separate function.
This fixes #2684. | 
|  | This gives better results when people write e.g. `\TeX{}` in Markdown.
    \TeX{} and \LaTeX{}
now works as expected with `pandoc -f markdown -t latex`.
Closes #2687. | 
|  | Put them in a list in the metadata so they are all
preserved, rather than (as before) throwing out all
but one.. | 
|  | See #2171. | 
|  | Closes #2674. | 
|  | For example, `py` will now work as well as `python`.
Closes jgm/highlighting-kate#83. | 
|  | This avoids performance problems in documents with many identically
named headers.
Closes #2671. | 
|  | Add TEI Writer. | 
|  |  | 
|  |  | 
|  | Change types of divs.
From Docbook "sect#" and "simplesect" to "level#" and
"section."
Add tests.
Add mention of TEI to README.
Small changes to TEI writer. | 
|  |  | 
|  | Since the 'math' is only put into the template if stMath is
set anyway, there's no need for this conditional. | 
|  |  | 
|  | The convention used by pandoc for figures is to mark them by prefixing
the name with "fig:".  The org reader failed to do this if a figure had
no name.  The test for this was broken as well.
This fixes #2643. | 
|  | See fpco/stackage#1096. | 
|  | Closes #2645.
In cases where a match was not found for a quote, everything
from the open quote to the end of the paragraph was being dropped. | 
|  |  | 
|  | A Span is rendered with surrounding {braces}.
This was a regression in 1.16.  Closes #2624. | 
|  |  | 
|  | Issue submitted at tagsoup. | 
|  | - Text.Pandoc.XML.fromEntities:  handle entities without a
  semicolon. Always lookup character references with the
  trailing ';', even if it wasn't present.  And never add
  it when looking up numerical entities.  (This is what
  tagsoup seems to require.)
- Text.Pandoc.Parsing.characterReference:  Always lookup
  character references with the trailing ';', and leave off
  the ';' when looking up numerical entities.
This fixes a regression for e.g. `⟨`. | 
|  | Fix function dropping subtrees tagged :noexport: | 
|  | Continue scanning for comment subtrees beyond only the first block.
Note to self: when writing an recursive function, don't forget to, you
know, actually recurse.
Shout to @mrvdb for noticing this.
This fixes #2628. | 
|  | Closes #2626. | 
|  | Closes #2615. | 
|  | In 1.16 --latex-engine raises an error if a full path is
given. This commit fixes this reversion. Closes #2618. | 
|  | The reader previously did allow this, following redcloth,
which happily parses
    Html blocks can be <div>inlined</div> as well.
as
    <p>Html blocks can be <div>inlined</div> as well.</p>
This is invalid HTML, and this kind of thing can lead
to parsing problems (stack overflows) as well.  So this
commit undoes this behavior.  The above sample now produces;
    <p>Html blocks can be</p>
    <div>
    <p>inlined</p>
    </div>
    <p>as well.</p> | 
|  | Closes #2607. | 
|  | + Start cell on new line unless it's a single Para or Plain.
+ For single Para or Plain, insert a space after the `|` to
  avoid problems when the text begins with a character like
  `-`.
Closes #2604, closes #2606. | 
|  | Closes #2605. | 
|  | This sets up `\setuplayout` based on the variables `margin-left`,
`margin-right`, `margin-bottom`, and `margin-top`, if no layout
is given. | 
|  | If `geometry` has no value, but `margin-left`, `margin-right`,
`margin-top`, and/or `-margin-bottom` are given, a default value
for `geometry` is created from these.
Note that these variables already affect PDF production via HTML5
with wkhtmltopdf. | 
|  | For example
    \foo
    {bar}
    {baz}
Closes #2592. | 
|  |  | 
|  | Variables margin-top, margin-bottom, margin-left, margin-right.
Setting them with css inside @page doesn't seem to work, at least
with the released wkhtmltopdf. | 
|  | Adjusted default `page-size` to `letter`, to match current LaTeX
template. | 
|  | To use this:
    pandoc -t html5 -o result.pdf
(and add `--mathjax` if you have math.) | 
|  | * Added `thanks` variable
* Use `parskip.sty` when `indent` isn't set (fall
  back to using `setlength` as before if `parskip.sty`
  isn't available).
* Use `biblio-style` with biblatex.
* Added `biblatexoptions` variable.
* Added `section-titles` variable (defaults to true)
  to enable/suppress section title pages in beamer
  slide shows.
* Moved beamer themes after fonts, so that themes can
  change fonts.  (Previously the fonts set were being
  clobbered by lmodern.sty.) | 
|  | Fixes build failure. | 
|  | Closes #2597. | 
|  | AndreasLoow-master | 
|  | Previously macro definitions in indented code blocks
were being parsed as macro definitions, not code. | 
|  | instead of appending them to every ParagraphStyleRange
closes #2501 | 
|  |  | 
|  |  |