Enum pandoc::OutputFormat[][src]

pub enum OutputFormat {
    Native,
    Json,
    Plain,
    Markdown,
    MarkdownStrict,
    MarkdownPhpextra,
    MarkdownGithub,
    Commonmark,
    Rst,
    Html,
    Html5,
    Latex,
    Beamer,
    Context,
    Man,
    MediaWiki,
    Dokuwiki,
    Textile,
    Org,
    Texinfo,
    Opml,
    Docbook,
    OpenDocument,
    Odt,
    Docx,
    Haddock,
    Rtf,
    Epub,
    Epub3,
    Fb2,
    Asciidoc,
    Icml,
    Slidy,
    Slideous,
    Dzslides,
    Revealjs,
    S5,
    Lua(String),
}

typesafe access to -t FORMAT, -w FORMAT, --to=FORMAT, --write=FORMAT

Variants

native Haskell

JSON version of native AST

Plain text

pandoc’s extended markdown

original unextended markdown

PHP Markdown extra extended markdown

github extended markdown

CommonMark markdown

reStructuredText

XHTML 1

HTML 5

LaTeX

LaTeX beamer slide show

ConTeXt

Groff man

MediaWiki markup

DokuWiki markup

Textile

Emacs Org-Mode

GNU Texinfo

OPML

DocBook

Open Document

OpenOffice text document

Word docx

Haddock markup

Rich text format

EPUB v2 book

EPUB v3

FictionBook2 e-book

AsciiDoc

InDesign ICML

Slidy HTML and javascript slide show

Slideous HTML and javascript slide show

DZSlides HTML5 + javascript slide show

reveal.js HTML5 + javascript slide show

S5 HTML and javascript slide show

the path of a custom lua writer (see Custom writers)

Trait Implementations

impl Debug for OutputFormat
[src]

Formats the value using the given formatter. Read more

impl Clone for OutputFormat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for OutputFormat
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations