bliki-kernel
is a trimmed-down fork of Bliki, a parsing library for Wikitext in Java.
All credit goes to Axel Kramer, Jan Berkel, and other contributors. We just removed stuff.
bliki-kernel
was forked from commit 8882759
of https://bitbucket.org/axelclk/info.bliki.wiki.
Differences with bliki
:
bliki-addons
andbliki-creator
were removed, so this repository is a fork ofbliki-core
only- All references to a specific SLF4J binding were removed (cf. https://bitbucket.org/axelclk/info.bliki.wiki/issues/47)
- All references to Scribunto and Lua were removed
- The POM file was trimmed down, and dependencies were updated to newer versions
- The JAR is obviously smaller, if you care about that
To add a dependency on this project using Gradle, Maven, sbt, or Leiningen, we recommend using JitPack. The Maven group ID is com.github.thunken
, and the artifact ID is bliki-kernel
.
For example, for Maven, first add the JitPack repository to your build file:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
And then add the dependency:
<dependency>
<groupId>com.github.thunken</groupId>
<artifactId>bliki-kernel</artifactId>
<version>1.0.6</version>
</dependency>