Skip to content

Commit

Permalink
Staveless Futhark: add missing oe
Browse files Browse the repository at this point in the history
  • Loading branch information
stscoundrel committed Nov 21, 2022
1 parent 09953a4 commit 7c23422
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions stavelessfuthark/letters.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ func getLetterMapping() map[string]string {
"å": "ˎ",
"ä": "⸝",
"æ": "⸝",
"œ": "ˎ",
"ö": "ˎ",
"ø": "ˎ",
"ǫ": "ˎ",
Expand Down
4 changes: 2 additions & 2 deletions stavelessfuthark/stavelessfuthark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
)

func TestTransformsLettersToRunes(t *testing.T) {
const content = "aábcdðeéfghiíjklmnoópqrRstþuúvwxyýzåäæöøǫþ "
const expected = "⸝⸝ˏ╵⸍וᛁᛁᛙᛍᚽᛁᛁᛁᛍ⸌⠃⸜ˎˎˏᛍ◟◟╵⸍ו╮╮╮╮╵╮╮╵ˎ⸝⸝ˎˎˎו:"
const content = "aábcdðeéfghiíjklmnoópqrRstþuúvwxyýzåäæœöøǫþ "
const expected = "⸝⸝ˏ╵⸍וᛁᛁᛙᛍᚽᛁᛁᛁᛍ⸌⠃⸜ˎˎˏᛍ◟◟╵⸍ו╮╮╮╮╵╮╮╵ˎ⸝⸝ˎˎˎˎו:"
result := LettersToRunes(content)

if result != expected {
Expand Down

0 comments on commit 7c23422

Please sign in to comment.