Skip to content
Open
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
26 changes: 13 additions & 13 deletions knconverter
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@ import codecs
import argparse
import re

# Direct mapping of ASCII chars to Unicode
# Direct mapping of Unicode chars to ASCII
mapping = {
"C" : "ಅ",
"D" : "ಆ",
"E" : "ಇ",
"F" : "ಈ",
"G" : "",
"H" : "ಊ",
"IÄ" : "ಋ",
"J" : "ಎ",
"K" : "ಏ",
"L" : "ಐ",
"M" : "ಒ",
"N" : "",
"ಅ" : "C",
"" : "D",
"" : "E",
"" : "F",
"ಉ" : "G",
"ಊ" : "H",
"ಋ" : "IÄ",
"" : "J" ,
"" : "K",
"" : "L" ,
"" : "M",
"ಓ" : "N",
"O" : "ಔ",
"A" : "ಂ",
"B" : "ಃ",
Expand Down