Commit Graph
387 Commits
Author SHA1 Message Date
John MacFarlane a19971d358 Updated README on docx styles. 2013-02-27 18:58:26 -08:00
Douglas F. Calvert a4f31b102a Fix example header identifier. Very minor. 2013-02-26 23:48:56 -05:00
John MacFarlane ec2a51e40b Updated copyright year in README 2013-02-25 19:04:05 -08:00
John MacFarlane 5afe5218b7 Added examples in README for --number-offset. 2013-02-23 18:39:21 -08:00
John MacFarlane 756c8d492a --number-from -> --number-offset
Also `writerNumberFrom` -> `writeNumberOffset`.
The offset is a list of numbers (0 by default).
These are added to the section, subsection, etc.
numbers that would have been generated automatically.
2013-02-23 18:11:05 -08:00
John MacFarlane 4d54c6368b Clarify that --number-from only works in HTML. 2013-02-22 20:03:48 -08:00
John MacFarlane 4c106993b5 Documented --number-from. 2013-02-22 19:42:22 -08:00
John MacFarlane ec5dc431de Changes to --version.
Print default user data directory.
Put language names in lowercase and omit 'alert' and 'alert_indent'.
2013-02-07 20:06:30 -08:00
John MacFarlane 7f6eff3b3b README: List proper default data directory for Windows 7. 2013-02-07 19:48:23 -08:00
John MacFarlane 8dfbe3bbe8 Implement --default-image-extension for LaTeX reader. 2013-02-06 08:36:29 -08:00
John MacFarlane c5f1a8ad2d Added --default-image-extension and readerDefaultImageExtension.
Note: Currently this only affects the markdown reader.
2013-02-05 20:08:00 -08:00
John MacFarlane 8448b8a386 README: Split up documentation of table extensions. 2013-01-22 19:31:03 -08:00
John MacFarlane ddfbcae782 Corrected name of blank_before_blockquote in README.
Closes #718.
2013-01-22 07:53:32 -08:00
John MacFarlane d9c996d37a Change date on README. 2013-01-19 11:11:24 -08:00
John MacFarlane efcf19e5a4 Slight modification of lhs instructions. 2013-01-17 11:24:21 -08:00
John MacFarlane 19aa163904 Updated extensions in README. 2013-01-16 19:07:21 -08:00
John MacFarlane 517c4b5f31 README clarification. 2013-01-16 09:25:12 -08:00
John MacFarlane a3381331f8 README on docx styles: Image Caption, not Picture Caption. 2013-01-15 20:17:43 -08:00
John MacFarlane eebed6bc48 Added writerHtmlQTags and --html-q-tags option.
The previous default was to use `<q>` tags in HTML5.
But `<q>` tags are also valid HTML4, and they are not very
robust in HTML5.  Some user agents don't support them,
and some CSS resets prevent pandoc's quotes CSS from working
properly (e.g. bootstrap).  It seems a better default just
to insert quote characters, but the option is provided  for
those who have gotten used to using `<q>` tags.
2013-01-15 18:50:36 -08:00
John MacFarlane 93b373d4eb Added Brent Yorgey to Authors. 2013-01-15 13:43:36 -08:00
John MacFarlane ffbe7cc10d Added Denis Laxalde to Authors. 2013-01-15 13:32:23 -08:00
John MacFarlane 011c1cf4c9 ADded Arlo O'Keeffe to Authors. 2013-01-15 13:04:54 -08:00
John MacFarlane bf3a911a1c Changed Ext_autolink_urls -> Ext_autolink_bare_uris.
Added tests.
2013-01-15 12:44:50 -08:00
John MacFarlane 0ef24d1518 Added Ext_implicit_figures.
No code to hook this in yet.
2013-01-14 17:08:56 -08:00
John MacFarlane cc9fb46fa6 README: Cosmetic change in headerless table example.
Closes #696.
2013-01-13 19:00:46 -08:00
John MacFarlane 88b678f00e Documented line blocks in README. 2013-01-13 18:18:07 -08:00
John MacFarlane 97a3cb2e86 Options: Added githubMarkdownExtensions.
Added github_markdown as input/output option.
2013-01-11 10:11:53 -08:00
John MacFarlane f8db21fa16 Options: Added phpMarkdownExtraExtensions.
And added markdown_phpextra input/output format.
2013-01-10 22:39:47 -08:00
John MacFarlane 23ab5ffcb0 Implemented Ext_header_attributes.
This allows explicit attributes to be put on headers, using
a syntax like that for code blocks:

  {#id .class .class k=v k=v}
2013-01-10 20:32:53 -08:00
John MacFarlane fabb843c9a README: Changed description of markdown_attribute extension. 2013-01-06 16:56:20 -08:00
John MacFarlane c45ae571cc Changed --toc-level to --toc-depth. 2013-01-05 12:03:05 -08:00
John MacFarlane 7c10e57997 Changed --epub-toc-level to --toc-level.
Also writerEpubTOCLevel -> writerTOCLevel.
So far this is only implemented in the EPUB writer.
2013-01-05 11:36:55 -08:00
John MacFarlane 30361308e7 Added --epub-chapter-level and --epub-toc-level options.
Also added writerEpubChapterLevel and writerEpubTOCLevel fields
to WriterOptions.
2013-01-04 22:29:41 -08:00
John MacFarlane 1d16349f38 Fixed duplicate link reference in README. 2013-01-04 21:56:26 -08:00
John MacFarlane c435e9cda7 Implemented Ext_header_identifiers, Ext_implicit_header_references.
Now by default pandoc will act as if link references have been defined
for all headers.  So, you can do this:

    # My header

    Link to [My header].
    Another link to [it][My header].

Closes #691.
2013-01-03 20:35:01 -08:00
John MacFarlane 579d645f23 Documented .bibtex extension for BibTeX.
Closes #662.
2012-12-19 11:58:18 -08:00
John MacFarlane 5914be88a8 EPUB writer: Rationalized templates.
* Previously there were three different templates involved in
  epub production. There is now just one template, default.epub
  or default.epub3.
* It can now be overridden using `--template`, just like other
  templates.
2012-11-04 21:21:57 -08:00
John MacFarlane 83b326b005 EPUB: removed need for separate epub-titlepage template.
The titlepage stuff is now folded into the epub-page template.
A titlepage variable selects it.
2012-11-04 21:08:40 -08:00
John MacFarlane a7b8351d43 EPUB writer: Removed need for separate epub-coverpage template.
The standard epub-page template is now used.
2012-11-04 20:53:41 -08:00
John MacFarlane 43448d7d53 Preliminary changes for epub3 format.
* EPUB writer now exports writeEPUB2 and writeEPUB3.
* 'epub' output format is epub v2, while 'epub3'
  is v3.
2012-11-02 17:46:22 -07:00
John MacFarlane b1dafe8750 Fixed typo. 2012-10-04 09:24:28 -07:00
John MacFarlane 606b5e8ed4 Removed Ext_monospace_autolinks. 2012-09-27 15:01:00 -07:00
John MacFarlane bae39e77a8 Added Ext_autolink_urls. 2012-09-27 13:43:48 -07:00
John MacFarlane 15a8192b84 Renamed Ext_autolink_code_spans to Ext_monospace_autolinks. 2012-09-27 13:33:14 -07:00
John MacFarlane 885ef2072f Make --id-prefix affect footnote IDs in markdown writer.
Closes #614.
2012-09-25 20:26:38 -07:00
John MacFarlane 1e7599cf6a README: Removed claim that 'enumerate' library is needed in LaTeX.
It isn't any longer.
2012-09-16 22:34:06 -07:00
John MacFarlane 62225599c9 Updated README to mention longtable package 2012-09-15 18:02:39 -04:00
John MacFarlane 0311ca8145 Updated README to include mediawiki reader 2012-09-15 18:02:08 -04:00
John MacFarlane 9bd371acd1 README: Properly escape $ characters.
Otherwise they mess up the LaTeX benchmark, which uses a version
of README converted to LaTeX.
2012-09-08 22:13:48 -07:00
John MacFarlane c544f20d6f Made --id-prefix work in DocBook as well as HTML.
Closes #607.
2012-09-06 09:25:52 -07:00