Package io.ktor.server.velocity
Types
Link copied to clipboard
class VelocityContent(template: String, model: Map<String, Any>, etag: String?, contentType: ContentType)
Content copied to clipboard
A response content handled by the io.ktor.server.velocity.Velocity plugin.
Functions
Link copied to clipboard
suspend fun ApplicationCall.respondTemplate(template: String, model: Map<String, Any> = emptyMap(), etag: String? = null, contentType: ContentType = ContentType.Text.Html.withCharset(Charsets.UTF_8))
Content copied to clipboard
Properties
Link copied to clipboard
A plugin that allows you to use Velocity templates as views within your application. Provides the ability to respond with VelocityContent. You can learn more from Velocity.
Link copied to clipboard
A plugin that allows you to add standard and custom Velocity tools. You can learn more from Velocity.