summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers
Commit message (Collapse)AuthorAge
...
* HTML writer: change s5-url to s5/default.John MacFarlane2011-11-20
|
* AsciiDoc: Don't use Roman numerals in ordered lists.John MacFarlane2011-11-18
| | | | AsiiDoc doesn't support them.
* Renamed to AsciiDoc. Fixed display math and escapes.John MacFarlane2011-11-18
| | | | AsciiDoc does not seem to have consistent escaping rules.
* Skip raw HTML blocks in asciidoc.John MacFarlane2011-11-18
|
* Fixed continuations in asciidoc definition lists.John MacFarlane2011-11-18
|
* Removed link title in asciidoc.John MacFarlane2011-11-18
| | | | Apparently it is not supported.
* Ensure blank line before html passthrough.John MacFarlane2011-11-18
|
* Implemented ordered lists in asciidoc.John MacFarlane2011-11-18
|
* Implemented bullet lists in asciidoc writer.John MacFarlane2011-11-18
|
* Added fields to track list levels.John MacFarlane2011-11-18
|
* Added comment about limitations of asciidoc conversion.John MacFarlane2011-11-18
|
* Supported tables in asciidoc, added table tests.John MacFarlane2011-11-18
|
* Indicate when a multiblock footnote is omitted.John MacFarlane2011-11-17
|
* Supported definition lists.John MacFarlane2011-11-17
|
* Use attributes for author/date.John MacFarlane2011-11-17
|
* Added an asciidoc writer (partial).John MacFarlane2011-11-16
| | | | | | | | | | | | | Still TODO: - documentation in README - add default.asciidoc to templates/ - lists - tables - proper escaping - footnotes with blank lines - print separately at end? currently they are just ignored. - fix header (date gives weird result on pandoc README)
* Add date to EPUB titlepage and metadata.John MacFarlane2011-11-12
| | | | Closes #323. Thanks to Ralf Stephan for the patch (slightly modified).
* HTML writer: Use `<section>` for footnotes if html5.John MacFarlane2011-11-07
|
* Don't generate superfluous file `cover-image.jpg`.John MacFarlane2011-10-27
| | | | Closes #319.
* Added TOC identifier in EPUB page template.John MacFarlane2011-10-27
| | | | Closes #329.
* HTML reader now recognizes DocBook block and inline tags.John MacFarlane2011-10-25
| | | | | | | | | | | | It was always possible to include raw DocBook tags in a markdown document, but now pandoc will be able to distinguish block from inline tags and behave accordingly. Thus, for example, <sidebar> hello </sidebar> will not be wrapped in `<para>` tags.
* HTML slides: only add id to div/section if --section-divs selected.John MacFarlane2011-10-02
|
* Simplified slide creation in HTML writer.John MacFarlane2011-10-02
| | | | | | | | | | | | | | | | | A horizontal rule now gets transformed into an empty H1 header before 'hierarchicalize' is called. If the document that does not begin with an H1 header, an empty one is provided. This avoids the need for kludgy raw HTML. Also, the 'titleslide' class is added to any section containing just a title: ---- ----
* Added dzslides output option.John MacFarlane2011-10-01
| | | | | | * Added DZSlides to HTMLSlideVariant. * Added support for dzslides in HTML writer. * Added dzslides template.
* LaTeX writer: don't escape # or ~ inside href{...}.John MacFarlane2011-10-01
| | | | Closes #309.
* Added escaping of euro character to LaTeX writer.John MacFarlane2011-09-23
| | | | Partially resolves #309.
* RST writer: Fixed bug involving empty table cells.John MacFarlane2011-09-05
| | | | | | | isSimple was being calculated in a way that assumed there were no non-empty cells. Resolves #299. Thanks to rmunoz for reporting the bug.
* ConTeXt writer: Changed 'descr' to 'description', fixed alignment.John MacFarlane2011-08-20
|
* ConTeXt: Use buffering for footnotes containing code blocks.John MacFarlane2011-08-18
| | | | Closes #291.
* ConTeXt: Escape # in link URLs.John MacFarlane2011-08-18
| | | | Partially addresses #291.
* Added s5-url and slidy-url variables, instead of hard-coding.John MacFarlane2011-07-28
| | | | | | | If you want to put your slidy files in the slidy subdirectory, for example, you can do pandoc -t slidy -V slidy-url=slidy -s
* Docbook writer: Use programlisting for code blocks.John MacFarlane2011-07-24
| | | | Instead of screen, as before.
* Docbook writer: Use CALS tables (instead of XHTML tables).John MacFarlane2011-07-24
| | | | | | | Reason: Some older docbook software does not work with XHTML tables. Closes #77.
* HTML writer: Removed English title on footnote back links.John MacFarlane2011-07-24
| | | | This is incongruous in non-English documents.
* Insert CDATA around inline js/css in HTML, slidy.John MacFarlane2011-07-24
|
* Use \enquote{..} for latex quotes if template uses csquotes package.John MacFarlane2011-07-23
| | | | | This provides better support for foreign language quoting. Thanks to Andreas Wagner for the idea.
* HTML writer/templates: Made TOC more customizable.John MacFarlane2011-07-23
| | | | | | The container for the TOC is now in the template, so users can insert a header or other styling. Thanks to Bruce D'Arcus for the suggestion.
* LaTeX writer: don't set stVerbInNote unnecessarily.John MacFarlane2011-07-23
|
* Deprecated `--xetex` option - it is no longer needed.John MacFarlane2011-07-22
| | | | | | | | | | Deprecated `writerXeTeX` and the `--xetex` option. The latex writer now produces a file that can be processed by latex, pdflatex, lualatex, or xelatex, so this option isn't needed. The option is still neded in markdown2pdf, however, which has been modified to take some options that aren't in pandoc.
* LaTeX writer: Use \texttt and escapes instead of \verb!..!.John MacFarlane2011-07-22
| | | | | \verb is simply too fragile; it doesn't work inside command arguments.
* ConTeXt writer: Made \start/stoptyping flush with margin.John MacFarlane2011-07-19
| | | | This prevents extra blank lines.
* LaTeX writer: make verbatim environments flush to avoid extra space.John MacFarlane2011-07-19
| | | | | | | The indented `\end{verbatim}` was causing an extra blank line in the output. Closes #277.
* Added unexported Text.Pandoc.MIME.John MacFarlane2011-07-19
| | | | | Moved getMimeType from Text.Pandoc.Shared to Text.Pandoc.MIME, so we won't have an API change.
* ODT writer: Construct META-INF/manifest.xml based on archive contents.John MacFarlane2011-07-17
| | | | | | This fixes a bug in ODTs containing images. LibreOffice would signal that these ODTs were corrupt, because the manifest.xml did not contain a reference to the image files.
* Un-URI-escape image filenames in LaTeX, ConTeXt, RTF, Texinfo.John MacFarlane2011-07-16
| | | | | | Also do this when copying image files into EPUBs and ODTs. Closes #263.
* HTML writer: Use embed tag for images with non-image extensions.John MacFarlane2011-07-16
| | | | | | (e.g. PDFs). Closes #264.
* Improved LaTeX tables.John MacFarlane2011-07-10
| | | | | | | * Use ctable package, which allows footnotes and provides additional options. * Made cell alignments work in multiline tables. * Closes #272.
* LaTeX tables: more space btw lines, top-align cells.John MacFarlane2011-07-10
| | | | Closes #271.
* Fixed bug in slidy writer: unclosed div tag.John MacFarlane2011-07-06
|
* EPUB writer: Add a meta element specify the cover.Kelsey Hightower2011-07-04
| | | | | | | | | | | Some EPUB e-readers, such as the Nook, require a meta element inside the OPF metadata block to ensure the cover image is properly displayed. When generating an EPUB using the `--epub-cover-image` option, this patch adds the following meta element to the OPF metadata block in `content.opf`: <meta name="cover" content="cover-image" />