John MacFarlane
942b7b8f9c
Slidy: Use slidy.js rather than slidy.js.gz.
...
Reason: some browsers have trouble with the gzipped js file,
at least on the local file system.
Closes #795 .
2013-03-25 19:48:42 -07:00
John MacFarlane
b6f75f60d6
EPUB writer: Don't put blank title page in reading sequence.
...
Set linear="no" if no title block.
Addresses #797 .
2013-03-24 23:06:44 -07:00
John MacFarlane
cb906e7512
EPUB writer: Add id="toc-title"
to h1 in nav.xhtml.
...
Closes #799 .
2013-03-24 22:41:00 -07:00
John MacFarlane
7286ef1fc3
Fixed typo. Closes #798 .
2013-03-24 21:13:02 -07:00
John MacFarlane
134f478e04
Added note on nesting of section levels in revealjs.
2013-03-24 21:07:17 -07:00
John MacFarlane
6217623d0a
Added syntax for "pauses" in beamer or reaveljs slide shows.
...
This gives
. . .
a pause.
2013-03-24 21:03:04 -07:00
John MacFarlane
f2f3c3301f
revealjs template: include pdf stylesheet by default.
2013-03-24 19:57:53 -07:00
John MacFarlane
572457f8a9
Documented revealjs in README and pandoc.cabal description.
2013-03-23 21:48:39 -04:00
John MacFarlane
da1e38893a
Reveal.js improvements.
...
Changed name to revealjs (from reveal_js).
Set revealjs-url template variable to 'reveal.js' by default.
2013-03-23 21:48:34 -04:00
John MacFarlane
388acaa5f1
New revealjs template.
2013-03-23 21:46:09 -04:00
John MacFarlane
6b4a72f633
Added default.revealjs template to cabal file.
2013-03-23 21:31:15 -04:00
John MacFarlane
df78a9935d
Updated templates to include reveal.js.
2013-03-22 01:17:28 -04:00
John MacFarlane
2ec59935de
reveal_js: nested vertical stacks used for hierarchical structure.
...
Variant of a patch from jamiefolson.
Results for more than one level of nesting may be odd.
Perhaps this needs revising.
2013-03-21 15:46:47 -07:00
John MacFarlane
5b424f881d
Support incremental slide view for definition lists.
...
All slide formats supported.
Simplified some list code.
2013-03-21 15:21:53 -07:00
Jamie F. Olson
6b53a905c4
Added basic support for reveal.js.
...
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.
2013-03-21 14:54:17 -07:00
John MacFarlane
ff9af6c9e5
EPUB writer: Don't add dc:creator tags if present in epub metadata.
2013-03-20 13:10:03 -07:00
Jamie F. Olson
375c53869d
Updated instructions for submodules to avoid confusion.
2013-03-20 11:34:32 -07:00
John MacFarlane
5b4d239b85
Added OPML template, tests.
...
Minor fixes to OPML writer.
Improved OPML reader tests.
2013-03-20 10:17:59 -07:00
John MacFarlane
a63c208d77
OPML reader: Type attributes are not case sensitive.
...
So, `type="link"` or `type="LINK"`.
2013-03-20 09:16:16 -07:00
John MacFarlane
366c20a425
Documented OPML writer in README.
2013-03-20 09:04:41 -07:00
John MacFarlane
69acb47a34
Added Text.Pandoc.Writers.OPML.
...
TODO:
* Document in README
* Add tests
* Add template (and add template to cabal file)
2013-03-19 22:49:44 -07:00
John MacFarlane
8aa6172380
Merge branch 'opml'
2013-03-19 20:23:48 -07:00
John MacFarlane
74d53f4347
Added Text.Pandoc.Readers.OPML, exporting readOPML.
...
The _note attribute is supported. This is unofficial, but
used e.g. in OmniOutliner and supported by multimarkdown.
We treat the contents as markdown blocks under a section
header.
Added to documentation and tests.
2013-03-19 20:22:14 -07:00
John MacFarlane
d596b0db83
Docx writer: Fixed rendering of display math in lists.
...
In 1.11 and 1.11.1, display math in lists rendered as a new list
item. Now it always appears centered, just as outside of lists,
and in proper display math style, no matter how far indented the
containing list item is.
Closes #784 .
2013-03-18 19:31:48 -07:00
John MacFarlane
b3661adada
Added pandoc-dingus to release checklist.
2013-03-17 15:22:35 -07:00
John MacFarlane
5976fbb877
Updated changelog.
2013-03-17 11:08:08 -07:00
John MacFarlane
835deee58b
Markdown writer: New approach for citations.
...
* Reverts 1.11 change that caused citations to be rendered as
markdown citations, even if `--biblio` was specified, unless
`citation` extension is disabled. Now, formatted citations
are always printed if `--biblio` was specified. If you want to
reformat markdown keeping pandoc markdown citations intact,
just don't specify `--biblio`.
* Reverted now unnecessary changes to Text.Pandoc.Biblio adding the raw
block to mark the bibliography, and to Text.Pandoc.Writers.Markdown
to remove the bibliography if `citations` not specified.
* If the content of a `Cite` inline is a `RawInline "latex"`, which
means that a LaTeX citation command was parsed and `--biblio` wasn't
specified, then render it as a pandoc markdown citation. This means
that `pandoc -f latex -t markdown`, without `--biblio`, will convert
LaTeX citation commands to pandoc markdown citations.
2013-03-17 10:33:54 -07:00
John MacFarlane
8ca5198b8e
Updated changelog.
2013-03-17 10:01:01 -07:00
John MacFarlane
99f9126d72
Markdown writer: Omit bibliography when citations
enabled.
...
In 1.11, citations would be rendered as pandoc markdown citations,
but the bibliography would still be printed.
We avoid that by adding a `RawBlock "pandoc" "references"` before
the references. This allows the markdown writer to find the references
and strip them off when `citations` is enabled.
2013-03-17 09:57:27 -07:00
John MacFarlane
cae52ecc31
Revert "LaTeX reader: citation handling changes."
...
This reverts commit f7229b1473
.
2013-03-17 08:48:29 -07:00
John MacFarlane
abc3896b8e
Minor tweak to changelog.
2013-03-16 22:53:19 -07:00
John MacFarlane
038e7b26c8
Removed ICU.
2013-03-16 22:48:23 -07:00
John MacFarlane
b4a0ed70b7
Added notes on building ICU.
2013-03-16 22:36:36 -07:00
John MacFarlane
0e40355059
Version bump to 1.11.1.
2013-03-16 15:55:43 -07:00
John MacFarlane
762258b233
Version bump to 1.11.0.1.
2013-03-16 15:48:34 -07:00
John MacFarlane
ca9e4845ea
Updated changelog.
2013-03-16 15:48:21 -07:00
John MacFarlane
6e8209f6b2
Bumped QuickCheck version bound.
2013-03-16 15:32:54 -07:00
John MacFarlane
f8fec87f09
Fixed numbering mismatch between TOC and sections in HTML.
...
Also made `--number-offset` affect TOC numbering as well
as section numbering, as it should have all along.
Closes #789 .
2013-03-16 14:48:37 -07:00
John MacFarlane
1921112bc9
Merge pull request #787 from sheremetyev/wix-allusers
...
Improve installation for all users on Windows
2013-03-15 15:26:43 -07:00
John MacFarlane
a1c0210dcd
Fixed regression in ODT writer.
...
This was due to a change in the Show instance for
Text.Pandoc.Pretty.Doc, which led 1.11 to produce corrupt ODTs.
Closes #780 .
2013-03-15 15:20:52 -07:00
Fyodor Sheremetyev
b4277c1658
WiX: Remove unnecessary parameter for candle.exe.
2013-03-15 21:45:08 +00:00
Fyodor Sheremetyev
7c572acbd6
WiX: Revert back to “Minimal” template.
...
The “Advanced” template doesn’t uninstall previous version if it was installed per-machine. FindRelatedProducts action executes before ALLUSERS property is set and search is performed in per-user products only.
2013-03-15 21:43:47 +00:00
Fyodor Sheremetyev
ef40aa9393
WiX: Update system PATH environment variable when installing per-machine.
...
Had to create two separate components because System property of Environment element cannot be set on condition.
2013-03-15 16:52:53 +00:00
Fyodor Sheremetyev
6269ba03b0
WiX: Install to %APPLOCALDATA%\Pandoc in per-user setup.
...
The “Advanced” template installs to %APPLOCALDATA%\Apps\Pandoc by default.
2013-03-15 16:37:08 +00:00
Fyodor Sheremetyev
5b3ad33066
WiX: Set non-empty feature name.
...
It can be displayed in Advanced mode.
2013-03-15 15:42:34 +00:00
Fyodor Sheremetyev
d7b6da66c4
WiX: Use APPLICATIONFOLDER property name as required by “Advanced” template.
...
Followup to cd4ad4bc96
.
2013-03-15 15:40:48 +00:00
Fyodor Sheremetyev
842661ee18
WiX: Install shortcut for all users when installing per-machine. Use HKMU to write registry values to either HKCU or HKLM.
...
http://stackoverflow.com/a/3824949
http://wix.sourceforge.net/manual-wix2/wix_xsd_registry.htm
2013-03-15 15:10:24 +00:00
Fyodor Sheremetyev
c3bdc422b2
WiX: Use file as key path for User’s Guide component.
2013-03-15 14:28:54 +00:00
Fyodor Sheremetyev
e6f32806fd
WiX: Refactoring: Place all components inside single directory structure.
...
For the sake of simplicity.
2013-03-15 14:25:40 +00:00
Fyodor Sheremetyev
cd4ad4bc96
WiX: Use “Advanced” template that supports selection of per-user or per-machine mode.
...
http://wix.sourceforge.net/manual-wix3/WixUI_advanced.htm
To install for all users installer should be started from admin account.
2013-03-15 13:46:07 +00:00