DEFAULT_DATA_FORMAT |
= |
'psv' |
|
Public: A String key that specifies the default table format in AsciiDoc
(psv)
|
DATA_FORMATS |
= |
['psv', 'dsv', 'csv'] |
|
Public: An Array of String keys that represent the table formats in
AsciiDoc
|
DEFAULT_DELIMITERS |
= |
{ 'psv' => '|', 'dsv' => ':', 'csv' => ',' |
|
Public: A Hash mapping the AsciiDoc table formats to their default
delimiters
|
TEXT_STYLES |
= |
{ 'd' => :none, 's' => :strong, 'e' => :emphasis, 'm' => :monospaced, 'h' => :header, 'l' => :literal, 'v' => :verse, 'a' => :asciidoc |
|
Public: A Hash mapping styles abbreviations to styles that can be applied
to a table column or cell
|
ALIGNMENTS |
= |
{ :h => { '<' => 'left', '>' => 'right', '^' => 'center' |
|
Public: A Hash mapping alignment abbreviations to alignments (horizontal
and vertial) that can be applies to a table column or cell
|