Skip to content

Commit

Permalink
Adapt
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Nov 11, 2024
1 parent 32632b4 commit d24b0ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1919,16 +1919,16 @@ Constants starting with `\e` are
form `\e[Nm`, where `N` is an integer, and set terminal display attributes.

Terminal display attribute escape sequences can be combined, for example text
weight `BOLD`, text style `STRIKE`, foreground color `CYAN`, and background
color `BG_YELLOW`. They should be followed by `NORMAL`, to reset the terminal
back to normal.
weight `BOLD`, text style `STRIKETHROUGH`, foreground color `CYAN`, and
background color `BG_YELLOW`. They should be followed by `NORMAL`, to reset the
terminal back to normal.

Escape sequences should be quoted, since `[` is treated as a special character
by some shells.

```just
@foo:
echo '{{BOLD + STRIKE + CYAN + BG_BLUE}}Hi!{{NORMAL}}'
echo '{{BOLD + STRIKETHROUGH + CYAN + BG_BLUE}}Hi!{{NORMAL}}'
```

### Attributes
Expand Down

0 comments on commit d24b0ce

Please sign in to comment.