diacritics-transliterator
Version:
Diacritic transliteration tool using the diacritics.io API
59 lines (39 loc) • 1.8 kB
Markdown
[](https://travis-ci.org/diacritics/node-diacritics-transliterator)
[](https://codeclimate.com/github/diacritics/node-diacritics-transliterator)
[](https://github.com/diacritics/node-diacritics-transliterator/)
> Diacritic transliteration tool using the diacritics.io API
```bash
$ 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**:
```javascript
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}`);
});
```