Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiburt committed Oct 15, 2021
1 parent bb372c0 commit 663772f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ An easy to use library for pretty printing tables of Rust `struct`s and `enum`s.
* [Views](#Views)
* [Expanded Display](#Expanded-Display)
* [Notes](#Notes)
* [ANSI escape codes](#ANSI-escape-codes)
* [Emoji](#Emoji)

# Usage
Expand Down Expand Up @@ -562,6 +563,19 @@ is_cool | true

## Notes

### ANSI escape codes

By default `tabled` doesn't handle [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code).
By default such things as hyperlinks, blinking and others things which can be achived via ANSI codes might not work correctly.

`tabled` support it by setting a `color` feature.

```toml
tabled = { version = "*", features = ["color"] }
```



### Emoji

The library support emojies out of the box but be aware that some of the terminals and editors may not render them as you would expect.
Expand Down

0 comments on commit 663772f

Please sign in to comment.