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

native Haskell

Json

JSON version of native AST

Plain

Plain text

Markdown

pandoc’s extended markdown

MarkdownStrict

original unextended markdown

MarkdownPhpextra

PHP Markdown extra extended markdown

MarkdownGithub

github extended markdown

Commonmark

CommonMark markdown

Rst

reStructuredText

Html

XHTML 1

Html5

HTML 5

Latex

LaTeX

Beamer

LaTeX beamer slide show

Context

ConTeXt

Man

Groff man

MediaWiki

MediaWiki markup

Dokuwiki

DokuWiki markup

Textile

Textile

Org

Emacs Org-Mode

Texinfo

GNU Texinfo

Opml

OPML

Docbook

DocBook

OpenDocument

Open Document

Odt

OpenOffice text document

Docx

Word docx

Haddock

Haddock markup

Rtf

Rich text format

Epub

EPUB v2 book

Epub3

EPUB v3

Fb2

FictionBook2 e-book

Asciidoc

AsciiDoc

Icml

InDesign ICML

Slidy

Slidy HTML and javascript slide show

Slideous

Slideous HTML and javascript slide show

Dzslides

DZSlides HTML5 + javascript slide show

Revealjs

reveal.js HTML5 + javascript slide show

S5

S5 HTML and javascript slide show

Lua(String)

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

Trait Implementations

impl Clone for OutputFormat
[src]

fn clone(&self) -> OutputFormat

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for OutputFormat
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for OutputFormat
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result

Formats the value using the given formatter.