Skip to content

Instantly share code, notes, and snippets.

@naturalett
Created December 22, 2022 22:40
Show Gist options
  • Save naturalett/f53bb25e4889645a4111d9abbdcbc35a to your computer and use it in GitHub Desktop.
Save naturalett/f53bb25e4889645a4111d9abbdcbc35a to your computer and use it in GitHub Desktop.
renderTemplate
import groovy.text.StreamingTemplateEngine
def call(input, variables) {
def engine = new StreamingTemplateEngine()
return engine.createTemplate(input).make(variables).toString()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment