Requires Java 11+. PagineDown is a library that is intended to be used with MineDown (not standalone) -- your project will need to shade MineDown to use it.
## Installation
PagineDown is available on JitPack. You can browse the Javadocs [here](https://javadoc.jitpack.io/net/william278/PagineDown/latest/javadoc/).
### Maven
To use the library on Maven, in your `pom.xml` file, first add the JitPack repository:
```xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
```
Then, add the dependency in your `<dependencies>` section. Remember to replace `Tag` with the current Annotaml version.
```xml
<dependency>
<groupId>net.william278</groupId>
<artifactId>PagineDown</artifactId>
<version>Tag</version>
<scope>compile</scope>
</dependency>
```
### Gradle & others
JitPack has a [handy guide](https://jitpack.io/#net.william278/PagineDown/#How_to) for how to use the dependency with other build platforms.