Skip to content

Generate documentation for KordEx bots!

License

Notifications You must be signed in to change notification settings

HyacinthBots/doc-generator

This branch is 1 commit ahead of main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

313308e · Dec 23, 2024
Aug 26, 2024
Oct 26, 2024
Oct 26, 2024
Dec 23, 2024
Oct 26, 2024
Dec 6, 2022
Nov 30, 2022
Nov 30, 2022
Feb 21, 2024
Feb 21, 2024
Dec 2, 2024
Dec 11, 2024
Jan 9, 2024
Nov 30, 2022
Aug 18, 2024
Aug 18, 2024
Oct 26, 2024

Repository files navigation

Doc-Generator

Doc-generator is a small library utility for the KordEx library that automatically generates documentation for commands within your KordEx bot.

This project is licensed under the MIT License


Translation Status

Translation status

You can contribute to the translations via this link

Translations are hosted on weblate


Installation

Latest version

Maven:

<!-- Adding the Snapshots repository (Optional) -->
<repository>
    <id>snapshots-repo</id>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    <releases>
        <enabled>false</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>
<!-- Adding the dependency. Replace TAG with the latest version -->
<dependency>
    <groupId>org.hyacinthbots</groupId>
    <artifactId>doc-generator</artifactId>
    <version>TAG</version>
</dependency>

Gradle (Groovy)

repositories {
    mavenCentral()
    // Optionally add the snapshots repository
    maven {
        name "Sonatype snapshots"
        url "https://oss.sonatype.org/content/repositories/snapshots"
    }
}

// Adding the dependency. Replace TAG with the latest version
dependencies {
    implementation('org.hyacinthbots:doc-generator:TAG')
}

Gradle (Kotlin)

repositories {
    mavenCentral()
    // Optionally add the snapshots repository
    maven {
        name = "Sonatype Snapshots"
        url = uri("https://oss.sonatype.org/content/repositories/snapshots")
    }
}

// Adding the dependency. Replace TAG with latest version
dependencies {
    implementation("org.hyacinthbots:doc-generator:TAG")
}

Getting started

Once the dependency has been added, navigate to the usage guide for how to get started.