You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*Tajweed is [npm](https://en.wikipedia.org/wiki/Npm_(software)) package for Tajweed and Buck*
3
+
## Quran Tools for Parsing Tajweed and Buck
4
+
5
+
The npm package is to be used with the [AlQuran.cloud](https://alquran.cloud/api) and [GlobalQuran.com](http://docs.globalquran.com/API:Data/Quran_List) APIs. They are made available so you may get the most out of the APIs.
6
+
7
+
## Installation
8
+
9
+
Use the package manager [npm](https://www.npmjs.com/) to install Tajweed.
10
+
11
+
```bash
12
+
npm install tajweed
13
+
#or
14
+
yarn add tajweed
15
+
```
16
+
17
+
## Usage
18
+
19
+
```javascript
20
+
constTajweed=require('tajweed').Tajweed
21
+
22
+
let string ="۞ ٱللَّهُ نُورُ [h:9421[ٱ][l[ل]سَّمَ[n[ـٰ]و[n[َٲ]"; //
23
+
let parseTajweed =newTajweed()
24
+
let parseString =parseTajweed.parse("string",true)
25
+
console.log(parseString)
26
+
```
27
+
28
+
```javascript
29
+
import'./tajweed.css'
30
+
importtajweed, {Tajweed} from'tajweed';
31
+
32
+
functionApp() {
33
+
let string ="۞ ٱللَّهُ نُورُ [h:9421[ٱ][l[ل]سَّمَ[n[ـٰ]و[n[َٲ]"; //
34
+
let parseTajweed =newTajweed()
35
+
let parseString =parseTajweed.parse("string",true)
0 commit comments