Skip to content

Commit

Permalink
Merge branch 'master' of github.com:medavox/IPA-Transcribers
Browse files Browse the repository at this point in the history
  • Loading branch information
medavox committed Sep 1, 2019
2 parents d0ff596 + 7245472 commit ad4a616
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,48 @@ which is capable of transcribing most orthographical information present in a la
Some languages are partially or completely incompatible with this approach; [details are
below](#depth).

## How To Install

First, add the jitpack repository if you haven't already:

`gradle`
``` gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```

`maven`
``` xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
```

Then add this library to your project:

`gradle`
``` gradle
dependencies {
implementation 'com.github.medavox:IPA-Transcribers:v0.1'
}
```

`maven`
``` xml
<dependency>
<groupId>com.github.medavox</groupId>
<artifactId>IPA-Transcribers</artifactId>
<version>v0.1</version>
</dependency>
```

## Language Support

The languages I aim to support, and their eligibility for rule-based transcribers:
Expand Down

0 comments on commit ad4a616

Please sign in to comment.