The text conversion service.
The service provides the following functions:
Appends Bopomofo readings to the input text.
The input text.
The text with Bopomofo readings appended.
let service = new Service();let input = "小麥注音輸入法";let output = service.appendBpmfReadingsToText(input); Copy
let service = new Service();let input = "小麥注音輸入法";let output = service.appendBpmfReadingsToText(input);
Convert Taiwanese Braille to text
The Braille input
The text output
let service = new Service();let input = "⠑⠪⠈⠍⠺⠐⠁⠌⠐⠹⠄⠊⠌⠄⠛⠌⠐⠟⠜⠈";let output = service.convertTextToBraille(input); Copy
let service = new Service();let input = "⠑⠪⠈⠍⠺⠐⠁⠌⠐⠹⠄⠊⠌⠄⠛⠌⠐⠟⠜⠈";let output = service.convertTextToBraille(input);
Converts text to Bopomofo readings.
The text input
The Bopomofo output
let service = new Service();let input = "小麥注音輸入法";let output = service.convertTextToBpmfReadings(input); Copy
let service = new Service();let input = "小麥注音輸入法";let output = service.convertTextToBpmfReadings(input);
Converts text to Taiwanese Braille
The Braille output
let service = new Service();let input = "小麥注音輸入法";let output = service.convertTextToBraille(input); Copy
let service = new Service();let input = "小麥注音輸入法";let output = service.convertTextToBraille(input);
Converts text to HTML Ruby
The HTML Ruby output
let service = new Service();let input = "小麥注音輸入法";let output = service.convertTextToHtmlRuby(input); Copy
let service = new Service();let input = "小麥注音輸入法";let output = service.convertTextToHtmlRuby(input);
Sets the user phrases to the language model.
The map of user phrases.
The text conversion service.
The service provides the following functions: