Skip to content

Commit

Permalink
Use URL safe strings
Browse files Browse the repository at this point in the history
  • Loading branch information
lancejpollard committed May 16, 2023
1 parent b950014 commit 83fc77e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions form.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const D = {
'++': '33',
'+': '3',
'^': '9', // accent mark
'#': '5',
'~': '5',
'&': '^',
'_': '%', // long vowel
'': ''
Expand All @@ -16,7 +16,7 @@ const D = {
const VOWELS = []
const BASE_VOWEL_GLYPHS = ['I', 'E', 'A', 'O', 'U', 'i', 'e', 'a', 'o', 'u']
const TONE_MARKS = ['--', '-', '++', '+', '']
const VARIANT_MARKS = ['#', '']
const VARIANT_MARKS = ['~', '']
const NASAL_MARKS = ['&', '']
const LONG_MARKS = ['_', '']
const ACCENT_MARKS = ['^', '']
Expand Down

0 comments on commit 83fc77e

Please sign in to comment.