epubby is a framework for working with the EPUB file format for Kotlin and Java.
- The
TableOfContentsclass does not currently properly keep all attributes defined by certain elements in the XHTML nav document for 3.x EPUB files.
The ISBN class is taken from the ISBN GitHub repository by kymmt90, it is available under the Apache 2.0 license.
Gradle
-
Groovy
repositories { jcenter() maven { url "https://dl.bintray.com/kotlin/kotlinx" name "kotlinx" } } dependencies { implementation "epubby.dev:epubby:LATEST_VERSION" } -
Kotlin
repositories { jcenter() maven(url = "https://dl.bintray.com/kotlin/kotlinx") { setName("kotlinx") } } dependencies { implementation(group = "epubby.dev", name = "epubby", version = "LATEST_VERSION") }
Maven
<dependency>
<groupId>epubby.dev</groupId>
<artifactId>epubby</artifactId>
<version>LATEST_VERSION</version>
<type>pom</type>
</dependency>
Copyright 2019 Oliver Berg
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.