enum Pandocr::OptionType::ToFormat

Overview

Enumeration type ToFormat for pandoc's command-line option --to.

Defined in:

pandocr/option_type/to_format.cr

Enum Members

Asciidoc = 0
Asciidoc_legacy = 1
Asciidoctor = 2
Beamer = 3
Bibtex = 4
Biblatex = 5
Chunkedhtml = 6
Commonmark = 7
Commonmark_x = 8
Context = 9
Csljson = 10
Djot = 11
Docbook = 12
Docbook4 = 13
Docbook5 = 14
Docx = 15
Dokuwiki = 16
Epub = 17
Epub2 = 18
Epub3 = 19
Fb2 = 20
Gfm = 21
Haddock = 22
Html = 23
Html4 = 24
Html5 = 25
Icml = 26
Ipynb = 27
Jats_archiving = 28
Jats_articleauthoring = 29
Jats_publishing = 30
Jats = 31
Jira = 32
Json = 33
Latex = 34
Man = 35
Markdown = 36
Markdown_mmd = 37
Markdown_phpextra = 38
Markdown_strict = 39
Markua = 40
Mediawiki = 41
Ms = 42
Muse = 43
Native = 44
Odt = 45
Opml = 46
Opendocument = 47
Org = 48
Pdf = 49
Plain = 50
Pptx = 51
Rst = 52
Rtf = 53
Texinfo = 54
Textile = 55
Slideous = 56
Slidy = 57
Dzslides = 58
Revealjs = 59
S5 = 60
Tei = 61
Typst = 62
Xwiki = 63
Zimwiki = 64

Instance Method Summary

Instance Method Detail

def asciidoc? #

def asciidoc_legacy? #

def asciidoctor? #

def beamer? #

def biblatex? #

def bibtex? #

def chunkedhtml? #

def commonmark? #

def commonmark_x? #

def context? #

def csljson? #

def djot? #

def docbook4? #

def docbook5? #

def docbook? #

def docx? #

def dokuwiki? #

def dzslides? #

def epub2? #

def epub3? #

def epub? #

def fb2? #

def gfm? #

def haddock? #

def html4? #

def html5? #

def html? #

def icml? #

def ipynb? #

def jats? #

def jats_archiving? #

def jats_articleauthoring? #

def jats_publishing? #

def jira? #

def json? #

def latex? #

def man? #

def markdown? #

def markdown_mmd? #

def markdown_phpextra? #

def markdown_strict? #

def markua? #

def mediawiki? #

def ms? #

def muse? #

def native? #

def odt? #

def opendocument? #

def opml? #

def org? #

def pdf? #

def plain? #

def pptx? #

def revealjs? #

def rst? #

def rtf? #

def s5? #

def slideous? #

def slidy? #

def tei? #

def texinfo? #

def textile? #

def to_s #
Description copied from struct Enum

Returns a String representation of this enum member. In the case of regular enums, this is just the name of the member. In the case of flag enums, it's the names joined by vertical bars, or "None", if the value is zero.

If an enum's value doesn't match a member's value, the raw value is returned as a string.

Color::Red.to_s                     # => "Red"
IOMode::None.to_s                   # => "None"
(IOMode::Read | IOMode::Write).to_s # => "Read | Write"

Color.new(10).to_s # => "10"

def typst? #

def xwiki? #

def zimwiki? #