ISBD Parsing Library
isbd-parser is a Kotlin library for working with ISBD-punctutated data, using the Autumn context-sensitive parsing library.
See the wiki for information on getting started.
Documentation available here.
You can play with an example application made using this library at isbuddy.voidstarzero.ca.
<repositories>
<!-- For the Autumn library dependency -->
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>ca.voidstarzero</groupId>
<artifactId>isbd-parser</artifactId>
<version>1.1.0</version>
</dependency>
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation "ca.voidstarzero:isbd-parser:1.1.0"
}