1.0.1 • Published 3 years ago

ivrita v1.0.1

Weekly downloads
8
License
AGPL-3.0-or-later
Repository
github
Last release
3 years ago

npm Tests and Linting

Install on your website

If your website uses WordPress, check out the WordPress Plugin for easy usage

Installing the library on your website requires 3 steps: 1. Include the minified JS file:

```html
<script src="https://ivrita.alefalefalef.co.il/ivrita.min.js"></script>
```
  1. Initialize the Ivrita object:

    • First argument is the DOM element(s) for which texts should be changed (default: <body> and <title>)
    • Second argument is the initial gender to be set (default: Ivrita.NEUTRAL)
    var ivrita = new Ivrita(document.querySelector('#content'), Ivrita.FEMALE);
  2. Change the gender later with setMode on the object instance:

    ```JavaScript
    ivrita.setMode(Ivrita.MALE); // Possible options: Ivrita.MALE, Ivrita.FEMALE, Ivrita.NEUTRAL, Ivrita.ORIGNAL
    ```

    That's it!

Install Source

Use npm to install the package files locally, to include in another JS library:

npm install ivrita
import Ivrita from 'ivrita';

console.log(Ivrita.genderize('ברוכים/ות הבאות/ים', Ivrita.FEMALE));

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Most typical changes to the Hebrew genderization should be added to the rules.js file. Note that the order of rules matters, since the rules are executed one by one and can conflict.

Use npm test (or npm run test-watch) to make sure your changes didn't break any functionality, and please make sure to update tests for new features or bug fixes.

1.0.1

3 years ago

0.1.4

3 years ago

0.1.2-core

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

4 years ago

1.0.0

4 years ago