Skip to content
  • hydrargyrum's avatar
    realign-text-table: tool to rebuild plain-text table · dc45e413
    hydrargyrum authored
    - takes a malformed ASCII-drawn table as stdin or file, for example:
        +-----+-----+
        | foo | bar |
        +-----+-----+
        | a long cell | short |
        | x | longer cell ? |
        +--+--+
    
    - outputs a well-formed table:
        +-------------+---------------+
        |     foo     |      bar      |
        +-------------+---------------+
        | a long cell |     short     |
        |      x      | longer cell ? |
        +-------------+---------------+
    dc45e413