A library for generating paginated MineDown-formatted chat menu lists
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
William e64e2dd786
Update README.md
2 years ago
.github/workflows Create gradle-ci.yml 2 years ago
.idea Update image 2 years ago
gradle/wrapper Initial commit 2 years ago
images Update image 2 years ago
src v1.0.3 - Add options to customize no. of page jumper buttons 2 years ago
.gitignore Initial commit 2 years ago
LICENSE Initial commit 2 years ago
README.md Update README.md 2 years ago
build.gradle v1.0.2 - Fix issues with jumper buttons, add tests for them 2 years ago
gradlew Make gradlew executable 2 years ago
gradlew.bat Initial commit 2 years ago
jitpack.yml Initial commit 2 years ago
settings.gradle Initial commit 2 years ago

README.md

PagineDown

Discord

PagineDown is a library for generating paginated MineDown-formatted chat menu lists.

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.

Note that your plugin will also need to shade (or shade a library that includes) MineDown.

Maven

To use the library on Maven, in your pom.xml file, first add the JitPack repository:

    <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 PagineDown version.

    <dependency>
        <groupId>net.william278</groupId>
        <artifactId>PagineDown</artifactId>
        <version>Tag</version>
        <scope>compile</scope>
    </dependency>

Gradle & others

JitPack has a handy guide for how to use the dependency with other build platforms.

License

PagineDown is licensed under Apache-2.0.