ISBD Parser

A context-sensitive ISBD parsing library.

License

License

GroupId

GroupId

ca.voidstarzero
ArtifactId

ArtifactId

isbd-parser
Last Version

Last Version

1.1.1
Release Date

Release Date

Type

Type

module
Description

Description

ISBD Parser
A context-sensitive ISBD parsing library.
Project URL

Project URL

https://github.com/hzafar/isbd-parser
Source Code Management

Source Code Management

http://github.com/hzafar/isbd-parser/tree/master/

Download isbd-parser

Dependencies

compile (1)

Group / Artifact Type Version
com.github.norswap » autumn jar 80abd5c207

runtime (2)

Group / Artifact Type Version
org.jetbrains.kotlin : kotlin-stdlib-jdk8 jar 1.3.60
com.fasterxml.jackson.module : jackson-module-kotlin jar 2.12.1

Project Modules

There are no modules declared in this project.

isbd-parser

ISBD Parsing Library

Overview

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.

Try it out

You can play with an example application made using this library at isbuddy.voidstarzero.ca.

Installation

Maven

<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>

Gradle

repositories {
    mavenCentral()
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation "ca.voidstarzero:isbd-parser:1.1.0"
}

Versions

Version
1.1.1
1.1.0
1.0.0
0.1.0