Diacritic transliteration tool using the diacritics.io API
$ npm install diacritics-transliterator
The module exports an object with the following functions:
This function replaces a placeholder inside a string with an array of equivalent diacritics and their mappings. You can use it e.g. to create a regular expression.
Parameters:
input
Type: string
A string of JavaScript code.
options
Type: object
Optional: true
An object of options:
Name | Type | Default | Description |
---|---|---|---|
placeholder | string | '// <% diacritics %>' | The placeholder that will be replaced with an array of equivalent diacritics and their mappings |
type | string | 'const' | The variable type |
name | string | 'diacritics' | The variable name |
Example:
const Diacritic = require('diacritics-transliterator');
const testString = `
const x = "Diacritics will be inserted below";
// <% diacritics %>
`;
Diacritic.replace(testString).then(response => {
console.log(response);
}, msg => {
throw new Error(`Failed: ${msg}`);
});