struct AsciiTables::TableConfig
- AsciiTables::TableConfig
- Struct
- Value
- Object
Overview
Collection of configuration options for Tables.
config = AsciiTables::TableConfig.new
config.headers = ["one", "two", "three"]
config.h_separator = "+"
config.v_separator = "*"
config.markdown = true
Defined in:
ascii_tables.crConstructors
Instance Method Summary
- #h_separator : String
- #h_separator=(h_separator : String)
- #headers : Array(String)
- #headers=(headers : Array(String))
- #markdown : Bool
- #markdown=(markdown : Bool)
- #strict : Bool
- #strict=(strict : Bool)
- #v_separator : String
- #v_separator=(v_separator : String)