Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Format ¶
Format is the public-facing interface that takes a list of strings and returns nicely aligned column-formatted text.
func SimpleFormat ¶
SimpleFormat is a convenience function to format text with the defaults.
Types ¶
type Config ¶
type Config struct { // The string by which the lines of input will be split. Delim string // The string by which columns of output will be separated. Glue string // The string by which columns of output will be prefixed. Prefix string // A replacement string to replace empty fields. Empty string // NoTrim disables automatic trimming of inputs. NoTrim bool }
Config can be used to tune certain parameters which affect the way in which Columnize will format output text.
func DefaultConfig ¶
func DefaultConfig() *Config
DefaultConfig returns a *Config with default values.
func MergeConfig ¶
MergeConfig merges two config objects together and returns the resulting configuration. Values from the right take precedence over the left side.
Click to show internal directories.
Click to hide internal directories.