@sarmay/character-shaper
Version:
This is a Kazakh Arabic character shaper, which assists developers in correcting text in areas where the text is confusing. It is often used to enter Kazakh text normally on PhotoShop, PR and other software; it can also be used in nodejs image synthesis.
120 lines (96 loc) • 3.83 kB
Markdown
# @Sarmay/Character-Shaper
## English | [简体中文](https://github.com/Sarmay/sarmay-character-shaper/blob/main/readme-CN.md)
### This is a Kazakh Arabic character shaper, which assists developers in correcting text in areas where the text is confusing. It is often used to enter Kazakh text normally on PhotoShop, PR and other software; it can also be used in nodejs image synthesis.
[](https://www.npmjs.org/package/@sarmay/character-shaper)
[](https://www.travis-ci.com/Sarmay/sarmay-character-shaper) [](https://coveralls.io/github/Sarmay/sarmay-character-shaper?branch=main) [](https://packagephobia.now.sh/result?p=@sarmay/character-shaper)
[](https://github.com/Sarmay/sarmay-character-shaper/issues) [](https://github.com/Sarmay/sarmay-character-shaper/network) [](https://github.com/Sarmay/sarmay-character-shaper/stargazers)
# Installing
### Using npm:
```
$ npm install @sarmay/character-shaper
```
### Using yarn:
```
$ yarn add @sarmay/character-shaper
```
### Using jsDelivr CDN:
```
<script src="https://cdn.jsdelivr.net/npm/@sarmay/character-shaper/dist/index.min.js"></script>
```
### Using unpkg CDN:
```
<script src="https://unpkg.com/@sarmay/character-shaper/dist/index.min.js"></script>
```
# Example
### Parameters: `<String>`
```
Xinjiang Kazakh-Arabic script
```
### for Node
```
const shaper = require('@sarmay/character-shaper')
const value = shaper('سالەم سارماي')
console.log(value)
```
### for Vue
- note: React / Angular As the same below
```
<template>
<div>
<textarea v-model="value" name="sarmay-ime" id="sarmay-ime" cols="30" rows="10" @keydown="keydownHandel"></textarea>
<div>{{newValue}}</div>
</div>
</template>
<script>
import webIME from '@sarmay/web-ime'
import characterShaper from '@sarmay/character-shaper'
export default {
data() {
return {
value: '',
newValue: ''
}
},
methods: {
keydownHandel(event) {
const inputValue = webIME('kz', event)
this.newValue = characterShaper(inputValue)
}
}
}
</script>
```
### for Html script
```
<html lang="en">
<head>
<meta charset="utf-8" />
<title>@Sarmay/character-shaper</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- load from unpkg -->
<script src="https://unpkg.com/@sarmay/web-ime/dist/index.min.js"></script>
<script src="https://unpkg.com/@sarmay/character-shaper/dist/index.min.js"></script>
<!-- or load from jsdelivr
<script src="https://cdn.jsdelivr.net/npm/@sarmay/web-ime/dist/index.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@sarmay/character-shaper/dist/index.min.js"></script>
-->
</head>
<body>
<div>
<textarea name="values" id="values" cols="50" rows="10"></textarea>
<div id="show"></div>
</div>
<script>
var values = document.getElementById('values');
var show = document.getElementById('show');
values.addEventListener("keydown", function(event) {
var newValue = sarmayIme('kz', event);
show.innerText = sarmayCharacterShaper(newValue)
});
</script>
</body>
</html>
```
## License
[MIT](LICENSE)