Skip to content

Commit

Permalink
Update ansi/sixel/encoder.go
Browse files Browse the repository at this point in the history
Co-authored-by: Ayman Bagabas <[email protected]>
  • Loading branch information
CannibalVox and aymanbagabas authored Feb 1, 2025
1 parent d44fac5 commit 16b7248
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions ansi/sixel/encoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@ import (
// band has been drawn, at which time a line break is written to begin the next band.

const (
sixelLineBreak byte = '-'
sixelCarriageReturn byte = '$'
sixelRepeat byte = '!'
sixelUseColor byte = '#'
LineBreak = '-'
CarriageReturn = '$'
RepeatIntroducer = '!'
ColorIntroducer = '#'
RasterAttribute = '"'

)

type Options struct {
Expand Down

0 comments on commit 16b7248

Please sign in to comment.