A reverter that converts Unicode to computer-friendly (but not, yet,
human-friendly) EWTS is here in alpha mode. It probably doesn't deal well with non-Tibetan.
This commit is contained in:
parent
00afd75362
commit
5788416629
13 changed files with 496 additions and 47 deletions
|
@ -32,11 +32,12 @@ public class UnicodeToTranslitForXslt {
|
|||
}
|
||||
|
||||
/** Converts Tibetan Unicode to EWTS transliteration. */
|
||||
public static String unicodeToEwts(String unicode) {
|
||||
return Converter.convertToEwts(unicode, null);
|
||||
public static String unicodeToEwtsForComputers(String unicode) {
|
||||
return Converter.convertToEwtsForComputers(unicode, null);
|
||||
}
|
||||
|
||||
/** Converts Tibetan Unicode to ACIP transliteration. */
|
||||
public static String unicodeToAcip(String unicode) {
|
||||
throw new Error("DLC: not yet");
|
||||
throw new Error("TODO(dchandler): not yet");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue