Skip to content

Commit 5b32582

Browse files
authored
Add standard chess pieces (#176)
1 parent 0d70dbf commit 5b32582

2 files changed

Lines changed: 37 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
## Unreleased
44

5+
### New in `sym`
6+
7+
- New `chess` submodule
8+
- `king.white`: ♔
9+
- `king.black`: ♚
10+
- `queen.white`: ♕
11+
- `queen.black`: ♛
12+
- `rook.white`: ♖
13+
- `rook.black`: ♜
14+
- `bishop.white`: ♗
15+
- `bishop.black`: ♝
16+
- `knight.white`: ♘
17+
- `knight.black`: ♞
18+
- `pawn.white`: ♙
19+
- `pawn.black`: ♟︎
20+
521
### Removals in `sym` **(Breaking change)**
622
These previously deprecated items were removed:
723
- `gt.tri.*`

src/modules/sym.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -733,6 +733,27 @@ suit
733733
.spade.filled ♠\vs{text}
734734
.spade.stroked ♤
735735

736+
chess {
737+
king
738+
.white ♔
739+
.black ♚
740+
queen
741+
.white ♕
742+
.black ♛
743+
rook
744+
.white ♖
745+
.black ♜
746+
bishop
747+
.white ♗
748+
.black ♝
749+
knight
750+
.white ♘
751+
.black ♞
752+
pawn
753+
.white ♙
754+
.black ♟︎
755+
}
756+
736757
// Music.
737758
note
738759
.up 🎜

0 commit comments

Comments
 (0)