snark/snark-html
2024-10-14 14:49:00 +03:00
..
src/jvmMain/kotlin/space/kscience/snark/html Fix type capture for raw html parser 2024-10-14 14:49:00 +03:00
build.gradle.kts Fully working document processing 2024-04-30 19:00:37 +03:00
README.md Update readme 2024-10-05 11:11:38 +03:00

Module snark-html

Features

  • data : Data-based processing. Instead of traditional layout-based
  • layouts : Use custom layouts to represent a data tree
  • parsers : Add custom file formats and parsers using DataForge dependency injection
  • preprocessor : Preprocessing text files using templates
  • metadata : Trademark DataForge metadata layering and transformations
  • dynamic : Generating dynamic site using KTor server
  • static : Generating static site

Usage

Artifact:

The Maven coordinates of this project are space.kscience:snark-html:0.2.0-dev-1.

Gradle Kotlin DSL:

repositories {
    maven("https://repo.kotlin.link")
    mavenCentral()
}

dependencies {
    implementation("space.kscience:snark-html:0.2.0-dev-1")
}