Refactor project to focus on Markdown parser development. Removed unused database and template-related code, added Markdown parsing functionality, and updated build configuration.

This commit is contained in:
2025-12-02 19:44:45 +01:00
parent a8fcabc571
commit 63c24f6355
19 changed files with 661 additions and 253 deletions

View File

@@ -1,5 +1,21 @@
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
val REPO_NAME = "dummy so the gitea template compiles, please remove"
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
rootProject.name = "markdown-parser"