Skip to content

Commit

Permalink
fix: fixed #2545
Browse files Browse the repository at this point in the history
  • Loading branch information
arnog committed Nov 11, 2024
1 parent 0df1d28 commit 6f33006
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Correctly display the caret following a `\mathop{}` command.
- **#2540** When using `renderMathInElement()` some white space was occasionally
incorrectly removed.
- **#2545** (?) Use `\rightarrow` instead of `\rarr` in the virtual keyboard.

## 0.101.1 _2024-10-15_

Expand Down
4 changes: 2 additions & 2 deletions src/virtual-keyboard/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,8 @@ export const LAYOUTS: Partial<
insert: '\\mathrm{abs}\\left(#0\\right)',
},
{
latex: '\\rarr',
shift: '\\rArr',
latex: '\\rightarrow',
shift: '\\Rightarrow',
variants: [
{ latex: '\\implies', aside: 'implies' },

Expand Down

0 comments on commit 6f33006

Please sign in to comment.