bgamari / tabular

A fork of the Haskell tabular package.
Other
3 stars 1 forks source link

Some Way to get rid of the double bar for the row headings #1

Open lolbinarycat opened 4 years ago

lolbinarycat commented 4 years ago

currently we have this:

+---++-------
|   ||     
+===++===
| 0 ||  
| 1 || 
| 2 || 

It would be nice to have this

+---+-------
|   |    
+===+===
| 0 |  
| 1 | 
| 2 | 

Alternatively, there's Unicode box drawing characters, but that seems like a bit more of an undertaking.

amigalemming commented 3 months ago

Regarding unicode there is https://hackage.haskell.org/package/unicode-0.0.1.1/docs/Data-Char-Frame.html for constructing frame elements using unicode characters.