Age | Commit message (Collapse) | Author | Files | Lines |
|
Closes #1220. Thanks to kevinkenan.
|
|
|
|
|
|
Ported from LaTeX template. Thanks to KarolS for the patch.
|
|
|
|
See #1164.
|
|
|
|
|
|
Otherwise Word ignores the style, even when specified in the pPr element.
I believe this should help with issue #901. You should now get
'FootnoteText' as the style of the footnote. You'll have to adjust
the style yourself; it's currently just the same as Normal.
|
|
This just required porting a macro definition from the default
latex template to the default beamer template.
|
|
|
|
Closes #908.
|
|
|
|
|
|
|
|
[ci skip]
|
|
Instead, let this be set in the template, using `\setupfloat`.
Thanks to Aditya Mahajan for the suggestion.
|
|
Instead of adding 'nunumber' every time we place a figure...
Closes #1067.
|
|
Now references should work properly (in a slide) when
`--biblatex` or `--natbib` is used.
|
|
Users of s5 and slideous will have to download the needed
files, as has been documented for some time in the README.
slidy files will be sought on the web, as before.
|
|
|
|
(Erik Evenson)
|
|
Going forward we'll use pandoc-citeproc, as an external filter.
The `--bibliography`, `--csl`, and `--citation-abbreviation` fields
have been removed. Instead one must include `bibliography`, `csl`,
or `csl-abbrevs` fields in the document's YAML metadata. The filter
can then be used as follows:
pandoc --filter pandoc-citeproc
The `Text.Pandoc.Biblio` module has been removed. Henceforth,
`Text.CSL.Pandoc` from pandoc-citations can be used by library users.
The Markdown and LaTeX readers now longer format bibliographies and
citations. That must be done using `processCites` or `processCites'`
from Text.CSL.Pandoc.
All bibliography-related fields have been removed from `ReaderOptions`
and `WriterOptions`: `writerBiblioFiles`, `readerReferences`,
`readerCitationStyle`.
API change.
|
|
|
|
See #939. We leave the nonconforming contextual-spacing attribute,
which is provided by LibreOffice itself and seems to be supported.
|
|
Currently these are "transparent" containers, except in HTML,
where they produce div and span elements with attributes.
|
|
|
|
Closes #920.
|
|
This is intended for class options like `oneside`; it may
be repeated with different options. Thanks to Oliver Matthews.
|
|
|
|
|
|
These are added automatically to individual chapter files,
depending on the highlighting style selected on the command line.
|
|
This ensures that straight quotes appear as straight, rather than
being treated as curly. See #889.
|
|
|
|
Now the `title`, `section`, `header`, and `footer` can all be set
individually in metadata. The `description` variable has been
removed.
Quotes have been added so that spaces are allowed in the title.
If you have a title that begins
COMMAND(1) footer here | header here
pandoc will parse it as before into a title, section, header, and
footer. But you can also specify these elements explicitly.
Closes #885.
|
|
|
|
* Depend on pandoc 1.12.
* Added yaml dependency.
* `Text.Pandoc.XML`: Removed `stripTags`. (API change.)
* `Text.Pandoc.Shared`: Added `metaToJSON`.
This will be used in writers to create a JSON object for use
in the templates from the pandoc metadata.
* Revised readers and writers to use the new Meta type.
* `Text.Pandoc.Options`: Added `Ext_yaml_title_block`.
* Markdown reader: Added support for YAML metadata block.
Note that it must come at the beginning of the document.
* `Text.Pandoc.Parsing.ParserState`: Replace `stateTitle`,
`stateAuthors`, `stateDate` with `stateMeta`.
* RST reader: Improved metadata.
Treat initial field list as metadata when standalone specified.
Previously ALL fields "title", "author", "date" in field lists
were treated as metadata, even if not at the beginning.
Use `subtitle` metadata field for subtitle.
* `Text.Pandoc.Templates`: Export `renderTemplate'` that takes a string
instead of a compiled template..
* OPML template: Use 'for' loop for authors.
* Org template: '#+TITLE:' is inserted before the title.
Previously the writer did this.
|
|
|
|
Now it can be used with options, if needed.
Thanks to Bernhard Weichel.
|
|
|
|
|
|
We need the mathspec library, not just fontspec, for this.
We also need to set options for setmathfont. Closes #734.
|
|
|
|
pandoc -t data/sample.lua
will load the script sample.lua and use it as a custom writer.
data/sample.lua is provided as an example.
Added `--print-custom-lua-writer` option to print the sample
script.
|
|
This differentiates between tight and loose lists.
Closes #775.
|
|
Reason: some browsers have trouble with the gzipped js file,
at least on the local file system.
Closes #795.
|
|
|
|
|
|
|
|
Support unordered and ordered lists with "fragment" elements.
Modified by JGM to remove the --reveal_js-url command-line option.
Instead use -V reveal_js-url=... as with slidy and the other slide
formats. Also cleaned up the list code in the HTML writer.
|