Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add figures for subscript numbers #63

Merged
merged 1 commit into from
Mar 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ declare const figureSet: {
readonly arrowRight: string;
readonly arrowLeftRight: string;
readonly arrowUpDown: string;
readonly subscriptZero: string;
readonly subscriptOne: string;
readonly subscriptTwo: string;
readonly subscriptThree: string;
readonly subscriptFour: string;
readonly subscriptFive: string;
readonly subscriptSix: string;
readonly subscriptSeven: string;
readonly subscriptEight: string;
readonly subscriptNine: string;
readonly radioOn: string;
readonly radioOff: string;
readonly checkboxOn: string;
Expand Down
10 changes: 10 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ const common = {
arrowRight: '→',
arrowLeftRight: '↔',
arrowUpDown: '↕',
subscriptZero: '₀',
subscriptOne: '₁',
subscriptTwo: '₂',
subscriptThree: '₃',
subscriptFour: '₄',
subscriptFive: '₅',
subscriptSix: '₆',
subscriptSeven: '₇',
subscriptEight: '₈',
subscriptNine: '₉',
oneHalf: '½',
oneThird: '⅓',
oneQuarter: '¼',
Expand Down
10 changes: 10 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,16 @@ Symbols to use when running on Windows.
| checkboxCircleOn | ⓧ | (×) |
| checkboxCircleOff | Ⓘ | ( ) |
| questionMarkPrefix | ?⃝ | ? |
| subscriptZero | ₀ | ₀ |
| subscriptOne | ₁ | ₁ |
| subscriptTwo | ₂ | ₂ |
| subscriptThree | ₃ | ₃ |
| subscriptFour | ₄ | ₄ |
| subscriptFive | ₅ | ₅ |
| subscriptSix | ₆ | ₆ |
| subscriptSeven | ₇ | ₇ |
| subscriptEight | ₈ | ₈ |
| subscriptNine | ₉ | ₉ |
| oneHalf | ½ | ½ |
| oneThird | ⅓ | ⅓ |
| oneQuarter | ¼ | ¼ |
Expand Down