de.infolektuell.typst
Owner:
Tamara Cook
Generates PDF documents using the Typst markup system
https://github.com/infolektuell/gradle-typst
Sources: https://github.com/infolektuell/gradle-typst.git
Version 0.8.0 (latest)
Created 12 November 2025.
- Adds more flexible configuration for image conversion
- Uses typst v0.14.0 per convention instead of the latest release to improve build reproducibility and stability
- Updates plugin conventions for Typst v0.14.0 and its new features
- Handles errors from executing command line tools more gracefully via Gradle's problem reporting API
Add this plugin to your build using the plugins DSL:
plugins {
id("de.infolektuell.typst") version "0.8.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("de.infolektuell.typst:de.infolektuell.typst.gradle.plugin:0.8.0") }It can then be applied in the precompiled script plugin:plugins { id("de.infolektuell.typst") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.infolektuell.typst:de.infolektuell.typst.gradle.plugin:0.8.0") } } apply(plugin = "de.infolektuell.typst") - Applying plugins to all subprojects .